
/* Base styles (mobile first) */
.password-reset-container {
    width: 100%;
    padding: 2rem 1rem;
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.password-reset-card {
    background-color: var(--white-color);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin: 1rem 0;
    width: 100%;
    max-width: 90%;
}

.password-reset-card h2 {
    font-family: var(--title-font);
    font-size: 1.5rem;
    color: var(--first-color);
    text-align: center;
    margin-bottom: 1rem;
}

.password-reset-card p {
    font-family: var(--text-font);
    font-size: 0.95rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-family: var(--text-font);
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-group input {
    padding: 0.75rem;
    font-family: var(--text-font);
    font-size: 0.95rem;
    color: var(--black);
    background-color: #f0f4f8;
    border: none;
    border-radius: 0.5rem;
    outline: none;
    width: 100%;
}

.error-message {
    font-family: var(--text-font);
    font-size: 0.85rem;
    color: #ff4d4d;
    text-align: center;
    margin-bottom: 1rem;
}

.reset-btn {
    padding: 0.75rem;
    font-family: var(--title-font);
    font-size: 0.95rem;
    font-weight: var(--font-medium);
    color: var(--white-color);
    background-color: var(--first-color);
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.reset-btn:hover {
    background-color: var(--first-color-alt);
}

/* Tablet styles (576px and up) */
@media screen and (min-width: 576px) {
    .password-reset-card {
        max-width: 450px;
        padding: 2rem;
    }

    .password-reset-card h2 {
        font-size: 1.75rem;
    }

    .password-reset-card p {
        font-size: 1rem;
    }

    .form-group label,
    .form-group input,
    .reset-btn {
        font-size: 1rem;
    }
}

/* Medium tablets (768px and up) */
@media screen and (min-width: 768px) {
    .password-reset-container {
        padding: 3rem 1rem;
    }

    .password-reset-card {
        max-width: 500px;
        padding: 2.5rem;
    }

    .password-reset-card h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .password-reset-card p {
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 1.1rem;
    }

    .form-group input {
        padding: 0.85rem;
        font-size: 1.1rem;
    }

    .reset-btn {
        padding: 0.85rem;
        font-size: 1.1rem;
    }
}

/* Large tablets and laptops (992px and up) */
@media screen and (min-width: 992px) {
    .password-reset-container {
        padding: 4rem 1rem;
    }

    .password-reset-card {
        max-width: 550px;
        padding: 3rem;
    }
    
    .password-reset-card h2 {
        font-size: 2.25rem;
    }

    .password-reset-card p {
        font-size: 1.2rem;
    }

    .form-group label {
        font-size: 1.2rem;
    }

    .form-group input {
        padding: 1rem;
        font-size: 1.2rem;
    }

    .reset-btn {
        padding: 1rem;
        font-size: 1.2rem;
    }
}

/* Desktops (1200px and up) */
@media screen and (min-width: 1200px) {
    .password-reset-card {
        max-width: 600px;
    }
}
