#verify-email {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hidden {
    display: none !important;
}

.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid lightgrey;
    border-top-color: #2298dd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#forgot-password {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.password-input-group {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.password-input {
    padding: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
}

#change-password-form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.password-input-error {
    border-color: red;
}

.password-input-error:focus {
    border-color: red;
}

.hidden {
    display: none !important;
}

.password-error {
    color: red;
    margin-bottom: 0 !important;
}

.fa-circle-check {
    color: green;
}

.fa-circle-xmark {
    color: red;
}

