#assessments {
    font-family: 'Poppins', sans-serif;
}
#assessments a {
    text-decoration: none;
    color: #05004E; /* Adjust link color */
}
#assessments .container {
    display: flex;
    height: 100vh;
    margin: 0;
    max-width: 100%;
    --bs-gutter-x: 0;
    background-color: #FFFAF6;
}
#assessments .content {
    flex: 1;
    padding: 1rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
}
#assessments .page-header {
    text-align: center;
}
#assessments .page-header h1 {
    margin-bottom: 0;
}
#assessments .member-header {
    margin-bottom: 0;
}
#assessments .page-title {
    margin-top: 0;
    color: #05004E;
    margin-bottom: 1.5rem;
}
#assessments .page-title2 {
    margin-top: 0;
    color: #05004E;
    margin-bottom: 2rem;
}
#assessments .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    width: 100%;
}
#assessments .box {
    border-radius: 1.2rem;
    padding: 3rem 4rem;
    width: 100%;
    max-width: 25rem;
    background: #fff;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
#assessments #category-title {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    color: #05004E;
    font-weight: 600;
}
#loginForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 75%;
}
#loginForm label {
    font-weight: 600;
    color: #05004E;
}
#loginForm input {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #444A6D;
}
#loginForm button {
    border: 0px solid #05004E;
    border-radius: 5px;
    background-color: #05004E;
    color: #fff;
    padding: 0.75rem;
    font-size: 1.2rem;
    width: 75%;
    margin: 0 auto;
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}


#passwordResetForm button {
    border: 0px solid #05004E;
    border-radius: 5px;
    background-color: #05004E;
    color: #fff;
    padding: 0.75rem;
    font-size: 1.2rem;
    width: 50%; /* Set the width to 75% */
    margin: 0 auto; /* Center the button horizontally */
    display: block; /* Ensure the button is a block element for centering */
}

#passwordResetForm input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    line-height: 1.5;
}
label[for="id_old_password"] {
    /* Your styles here */
    font-weight: bold;
    color: #05004E;
    font-size: 1rem;
}
label[for="id_new_password1"] {
    /* Your styles here */
    font-weight: bold;
    color: #05004E;
    font-size: 1rem;
}
label[for="id_new_password2"] {
    /* Your styles here */
    font-weight: bold;
    color: #05004E;
    font-size: 1rem;
}
ul {
    /* Your styles here */
    font-weight: bold;
    color: #05004E;
    font-size: 1rem;
    margin-bottom: 2rem;
}
#id_old_password {
    width: 100%;

    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    text-align: left; /* Align text to the left */
}
/* Align labels and inputs to the left */
#passwordResetForm label {
    width: 100%;
    text-align: left;
    display: block;
    font-weight: bold;
    color: #05004E;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    width: 20rem;
}

/* Align the form container to the left */
#passwordResetForm {
    flex-direction: column;
    align-items: flex-start;
    width: 100%; /* Ensure the form takes the full width of its container */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.6rem;
}