﻿body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    margin: 0;
    color: #333;
}

.page-wrapper {
    max-width: 1480px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Tabs */
.tabs {
    text-align: center;
    padding-bottom: 11px;
    padding-top:60px;
    
}

.tabs a {
    text-decoration: none;
    color: #777;
    font-weight: 500;
    margin: 0 20px;
    padding-bottom: 8px;
}

.tabs a.active {
    color: #1f3c88;
    border-bottom: 3px solid #1f3c88;
}

/* Card */
.form-card {
    background: #F9F9FB;
    padding: 40px;
    border-radius: 10px;
}

/* Grid */
.row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.row.full {
    flex-direction: column;
}

.col {
    flex: 1;
}

/* Labels */
label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

label span {
    color: red;
}

/* Inputs */
.input {
    width: 100%;
    padding: 14px 6px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    font-size: 14px;
}

.textarea {
    width: 100%;
    min-height: 120px;
    padding: 14px 6px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    resize: vertical;
}

.file {
    margin-top: 8px;
    
}

/* Button */
.actions {
    margin-top: 30px;
}

.submit-btn {
    background: #fff;
    color: #1f3c88;
    border: 2px solid #1f3c88;
    padding: 12px 36px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #1f3c88;
    color: #fff;
}

/* Grid rows */
.row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* Two columns by default (desktop) */
.col {
    flex: 1;
}

/* Full width rows */
.row.full {
    flex-direction: column;
}


.tabs a {
    padding: 10px 25px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
}

.tabs a.active {
    color: #1f3c88;
    border-bottom: 3px solid #1f3c88;
}


/* ============================= */
/* 📱 Mobile responsiveness */
/* ============================= */
@media (max-width: 768px) {

    .row {
        flex-direction: column;
        gap: 15px;
    }

    .form-card {
        padding: 25px;
    }

    .submit-btn {
        width: 100%;
        text-align: center;
    }

    .tabs a {
        margin: 0 12px;
        font-size: 14px;
    }
}
