/* Password Reset Styles */
.password-reset-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border: 1px solid #dbdbdb;
    text-align: center;
}

.reset-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #262626;
}

.reset-description {
    color: #8e8e8e;
    font-size: 14px;
    margin-bottom: 30px;
}

.reset-form {
    margin-bottom: 20px;
}

.btn-reset {
    width: 100%;
    background-color: #0095f6;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
}

.btn-reset:hover {
    background-color: #0077cc;
}

.login-link {
    margin: 20px 0;
    font-size: 14px;
    color: #262626;
}

.login-link a {
    color: #0095f6;
    text-decoration: none;
    font-weight: 600;
}

.btn-create-account {
    display: inline-block;
    color: #0095f6;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    font-size: 14px;
}

/* Divider (reuse from login styles) */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #8e8e8e;
    font-weight: 600;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dbdbdb;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}