/* ===============================
   Page Layout
=============================== */
.main-container {
    min-height: 100vh;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ===============================
   Form Container
=============================== */
.form-container {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ===============================
   Top Section
=============================== */
.top-section {
    text-align: center;
    margin-bottom: 25px;
}

.top-section img {
    width: 90px;
    margin-bottom: 10px;
}

.top-section h1 {
    font-size: 22px;
    color: #0f172a;
}

.top-section p {
    font-size: 14px;
    color: #64748b;
}

/* ===============================
   Form Layout
=============================== */
.form-row {
    display: flex;
    gap: 12px;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 4px;
    display: block;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.2s;
}

/* Focus */
.form-group input:focus,
.form-group select:focus {
    border-color: #2563eb;
    outline: none;
}

/* ===============================
   Button
=============================== */
.submit-btn {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.submit-btn:hover {
    background: #1d4ed8;
}

/* ===============================
   Footer Note
=============================== */
.footer-note {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 15px;
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }

    .form-container {
        padding: 20px;
    }
}