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

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #C4C9F3,whitesmoke );
    margin: 0;
}
/* #d7c4f3 #f7f7f7*/
.card {
    background: whitesmoke;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    width: 350px;
    text-align: center;
}

.card h2 {
    margin-bottom: 25px;
    color: #4a006e;
    font-size: 24px;
}

h3 {
    margin-bottom: 25px;
    color: #6a0dad;;
    font-size: 20px;
}
.card a {
    text-decoration: none;
    color: #6a0dad;
    font-weight: bold;
    
}

.input-box {
    display: flex;
    align-items: center;
    background: #D6D6D6;
    border: 1px solid transparent;
    border-radius: 30px;
    padding: 10px 15px;
    margin: 12px 0;
    transition: 0.3s;
}

.input-box:focus-within {
    border: 1px solid #6a0dad;
    background: #fff;
}

.input-box i {
    margin-right: 10px;
    color: #555;
}

.input-box input {
    border: none;
    outline: none;
    flex: 1;
    background: transparent;
    font-size: 14px;
}

.toggle-password {
    cursor: pointer;
    color: #666;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: 15px 5px;
    color: #444;
}

.options label {
    cursor: pointer;
}

.options a {
    text-decoration: none;
    color: #6a0dad;
}

.options a:hover {
    text-decoration: underline;
}

button {
    width: 100%;
    max-width: 200px;
    padding: 12px;

    border: none;
    background: #6a0dad;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 30px;
    transition: 0.3s;
}

button:hover {
    background: #4a006e;
}

#resend-btn {
    width: 100px;    
}

/* PAGE - TWOFACTORS */

.code-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px 
}

.code-form button {
    margin-top: 50px;
}
.code-input input {
    width: 50px;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 16px;
}



.nome-input{
    display: flex;
    width: 150px;
    flex-direction: row;
    margin-right: 10px;
}
.required-password {    
    margin-left: 10px;
    margin-bottom: 30px;
}

.required-password p {
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
    text-align: left;
    /* display: none; */

}

.required-password h2 {
    color: black;
    font-size: 12px;
    /* margin-top: 10px; */
    margin-bottom: 20px;
    text-align: left;
    /* display: none; */

}

.home-message {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.options-home {
    display: flex;
    justify-content: center;
    font-size: 14px;
    margin: 15px 5px;
    color: #444;
}

.options-home p{
    margin: 0 20px; 
}

.options-home a {
    text-decoration: none;
    color: #6a0dad;
    font-size: 15px;
}


.password-hint.invalid {
    color: red;
}

.password-hint {
    color: green;
}

#timer{
    margin-top: 10px; 
    color: black;}
