.login_page {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

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

.login_form_container {
    display: flex;
    justify-content: center;
}

.login_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
    margin-bottom: 30px;
}

.form_field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form_field label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.field_error {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin: 0;
}

.reset_link {
    display: flex;
    justify-content: center;
    gap: 30px;
}