﻿.page-wrap {
    padding: 50px 0 70px;
}

.card-glass {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 720px;
}

.form-control, .form-select, textarea {
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: #fff !important;
    border-radius: 14px !important;
    padding: .9rem .95rem !important;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

    .form-control::placeholder,
    textarea::placeholder {
        color: rgba(255,255,255,.40);
    }

    .form-control:focus, .form-select:focus, textarea:focus {
        background: rgba(255,255,255,.08) !important;
        border-color: rgba(138,124,255,.55) !important;
        box-shadow: 0 0 0 .25rem rgba(109,94,246,.18) !important;
    }

.form-label {
    color: rgba(255,255,255,.68);
    font-size: .9rem;
    margin-bottom: 8px;
}

.btn-primary {
    background: linear-gradient(135deg,var(--primary),var(--primary2));
    border: 0;
    border-radius: 14px;
    padding: .85rem 1.2rem;
    box-shadow: 0 14px 38px rgba(109,94,246,.22);
}

    .btn-primary:hover {
        filter: brightness(1.05);
    }

.btn-outline-light {
    border-color: rgba(255,255,255,.24);
    color: #fff;
    border-radius: 14px;
    padding: .85rem 1.2rem;
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,.10);
        color: #fff;
    }

.info-box {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.info-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}

.info-text {
    color: var(--text-muted);
    line-height: 1.6;
}

.alert-success-soft {
    background: rgba(0,255,170,.10);
    border: 1px solid rgba(0,255,170,.20);
    color: #d9fff4;
    border-radius: 16px;
    padding: 14px 16px;
}

.text-danger,
.validation-summary-errors {
    color: #ff9cab !important;
}
