.reset-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #fdfbfb, #ebedee, #e2d1f9, #a1c4fd);
}

.reset-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.back-to-login {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: left;
}

.back-to-login:hover {
    color: #5d5fef;
}

.reset-form h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.reset-form p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: left;
}

.reset-form label {
    display: block;
    text-align: left;
    margin-top: 1rem;
    font-weight: 600;
}

.reset-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.reset-button {
    margin-top: 20px;
    background-color: #5d5fef;
    color: white;
    border: none;
    padding: 0.75rem;
    width: 100%;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

.divider {
    margin: 1.5rem 0;
    position: relative;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
}

.divider::before,
.divider::after {
    content: "";
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 50%;
    width: 40%;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.social-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.social-btn {
    flex: 1;
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0px 5px 12px 5px rgba(0, 0, 0, 0.3);
}