/* ==========================================
   ASSIGN CAPTAIN & VICE CAPTAIN
========================================== */

.content-section {
    min-height: calc(100vh - 260px);
    background: #f4f7fb;
    padding: 70px 45px 100px;
}


/* ==========================================
   PAGE CONTAINER
========================================== */

.content-section {
    max-width: 100%;
    box-sizing: border-box;
}


/* ==========================================
   PAGE HEADER
========================================== */

.page-header {
    max-width: 1000px;
    margin: 0 auto 35px;
}

.page-header .section-label {
    display: block;

    color: #ff6248;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 12px;
}

.page-header h1 {
    margin: 0;

    color: #09284a;

    font-size: 48px;
    line-height: 1.15;

    font-weight: 800;
}

.page-header p {
    margin: 12px 0 0;

    color: #6b7f98;

    font-size: 22px;
    font-weight: 600;
}


/* ==========================================
   FORM CARD
========================================== */

.form-card {
    max-width: 1000px;

    margin: 0 auto;

    padding: 45px;

    background: #ffffff;

    border: 1px solid #dce5f2;

    border-radius: 24px;

    box-shadow:
        0 15px 40px rgba(20, 50, 90, 0.08);

    box-sizing: border-box;
}


/* ==========================================
   FORM GROUP
========================================== */

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;

    margin-bottom: 10px;

    color: #09284a;

    font-size: 19px;
    font-weight: 700;
}


/* ==========================================
   SELECT BOX
========================================== */

.form-group select {
    width: 100%;
    height: 60px;

    padding: 0 18px;

    border: 2px solid #d8e2ef;

    border-radius: 12px;

    background: #ffffff;

    color: #18324f;

    font-size: 17px;
    font-weight: 500;

    outline: none;

    cursor: pointer;

    box-sizing: border-box;

    transition: 0.2s ease;
}

.form-group select:hover {
    border-color: #a9c4e8;
}

.form-group select:focus {
    border-color: #3268ff;

    box-shadow:
        0 0 0 4px rgba(50, 104, 255, 0.10);
}


/* ==========================================
   BUTTON AREA
========================================== */

.form-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 40px;
}


/* ==========================================
   SAVE BUTTON
========================================== */

.primary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 30px;

    border: none;

    border-radius: 12px;

    background: #1769ff;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    text-decoration: none;

    transition: 0.2s ease;
}

.primary-button:hover {
    background: #0d55d9;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(23, 105, 255, 0.25);
}


/* ==========================================
   CANCEL BUTTON
========================================== */

.secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 28px;

    border: 2px solid #d8e2ef;

    border-radius: 12px;

    background: #ffffff;

    color: #36516f;

    font-size: 17px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.2s ease;
}

.secondary-button:hover {
    background: #f1f5fa;

    border-color: #b9c9dd;

    transform: translateY(-2px);
}


/* ==========================================
   ERROR MESSAGE
========================================== */

.error-message {
    margin-bottom: 25px;

    padding: 16px 20px;

    border-radius: 12px;

    background: #fff0ee;

    border: 1px solid #ffc9c2;

    color: #c73525;

    font-size: 16px;

    font-weight: 600;
}


/* ==========================================
   NO PLAYERS
========================================== */

.form-card h3 {
    margin: 0 0 10px;

    color: #09284a;

    font-size: 25px;
}

.form-card > p {
    margin: 0;

    color: #71839b;

    font-size: 17px;
    line-height: 1.6;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .content-section {
        padding: 40px 18px 70px;
    }

    .page-header h1 {
        font-size: 34px;
    }

    .page-header p {
        font-size: 19px;
    }

    .form-card {
        padding: 25px;

        border-radius: 18px;
    }

    .form-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }
}