

/* Styling for the title */
.title {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Centering the form */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: auto; */
    min-height: 100vh; /* Full screen height */
    padding: 20px 0; /* Vertical space to avoid clipping */
}

/* Styling for the card*/ 
.card {
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    max-width: 100%;
    /* overflow-y: auto; */
    /*text-align: center;*/
}

#password-rules li.valid {
    color: green;
}
#password-rules li.invalid {
    color: red;
}

#password-rules {
    display: none;
}

#password-rules.visible {
    display: block;
}

form {
    padding-bottom: 2rem;
}


/* Styling inputs 
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Styling the button 
button {
    width: 100%;
    padding: 5px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #333;
}

*/
