*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
}

@media (max-width: 1250px) {
  /* … */
}

.login-box {
    width: 320px;
    position: absolute;
    transform: translate(-50%,-50%);
    top:  30%;
    left: 50%;
}

.logo {
    position: relative;
    left: 90px;
    top: -70px;
}

form {
    position: absolute;
    top: 0;
    width: 320px;
/*   height: 360px; */
    background-color: rgba(255,255,255,0.13);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 32px 24px;
}

form * {
    font-family: 'Poppins',sans-serif;
    color: #080710;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}

form h3 {
    color: #073453CC;
    font-size: 32px;
    font-weight: bold;
    line-height: 42px;
    text-align: center;
}

label {
    display: block;
    margin-top: 24px;
    font-size:  16px;
    font-weight: 500;
}

input,
select {
    display: block;
    height: 40px;
    width: 100%;
    background-color: rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 0 8px;
    margin-top: 8px;
    font-size: 16px;
    font-weight: bold;

    border: 1px solid rgba(0,0,0,0.3);
}

/* // ::placeholder {
//     color: #e5e5e5;
// } */

button {
    margin-top: 32px;
    width: 100%;
    background-color: #073453;
    color: #FFFFFF;
    padding: 12px 0;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.error {
    background-color: rgba(255, 64, 64, 0.15);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 64, 64, 0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    margin:  16px 0;
    padding: 16px 8px;
}

@media only screen and (max-width: 600px) {
    .login-box {
        width: 80%;
        top:   10%;
        left:  10%;
    }
}
