*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #34495E;
    padding: 10px;
}
.cadre-infos {
    width: 90%;
    max-width: 600px;
    min-height: 75px;
    background-color: rgba(255, 255, 255, 0.13);
    transform: translate(0%, 0%);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.cadre-infos h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}
label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: left;
}
.login-field {
    display: block;
    width: 100%;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
    color: white;
}
.password-container {
    position: relative;
    width: 100%;
}
.password-container .eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: auto;
}
button {
    width: 100%;
    height: 45px;
    background-color: #ffffff;
    color: #080710;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}
::placeholder {
    color: #e5e5e5;
}
@media (max-width: 500px) {
    body {
        font-size: 14px;
    }
    
    .cadre-infos h3 {
        font-size: 24px;
    }
    
    label {
        font-size: 14px;
    }
    
    .login-field {
        height: 40px;
        font-size: 13px;
    }
    
    button {
        height: 40px;
        font-size: 16px;
    }
}