﻿.page {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 24px;
}
.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 28px;
    margin-bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
}
h6 {
    margin: 0 0 8px 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
}
h1 {
    margin: 0 0 8px 0;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}
p {
    margin: 0;
    font-size: 15px;
    color: #dbeafe;
}

.formStyle {
    flex: 1;
    min-width: 260px;
}

.formStyle label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #374151;
}

.select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    font-size: 14px;
    outline: none;
    appearance: none;
    transition: all 0.2s ease;
}

    .select:focus {
        border-color: #2563eb;
        background: #ffffff;
        box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
    }