/* Container */
.settings-page {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
}

/* Form Cards */
.form-card {
    background-color: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 0.75rem;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.03);
    max-width: 600px;
    width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.04);
}

.form-card h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    text-align: center;
}

.subtitle {
    font-size: 0.95rem;
    color: #8b98a5;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Labels */
form label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #444;
}

/* Inputs & Selects */
form input,
form select {
    width: 100%;
    padding: 0.65rem 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    border-radius: 0.45rem;
    border: 1px solid #dbe4ec;
    outline: none;
    background-color: #fbfdff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form input:focus,
form select:focus {
    border-color: #7fb3d5;
    box-shadow: 0 0 0 3px rgba(127, 179, 213, 0.18);
    background-color: #ffffff;
}

/* Buttons */
.btn.save-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 500;
    background: black;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(80, 159, 201, 0.35);
    opacity: 0.95;
}

.btn.save-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(80, 159, 201, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .form-card {
        padding: 1.5rem 2rem;
    }

    .form-card h2 {
        font-size: 1.5rem;
    }

    form input,
    form select {
        font-size: 1rem;
    }

    .btn.save-btn {
        font-size: 1rem;
        padding: 0.55rem 1rem;
    }
}

@media (max-width: 480px) {
    .form-card h2 {
        font-size: 1.3rem;
    }

    form input,
    form select {
        font-size: 0.95rem;
        padding: 0.5rem 0.7rem;
    }

    .btn.save-btn {
        font-size: 0.95rem;
        padding: 0.5rem 0.9rem;
    }
}
