﻿body {
}
/* BUTTONS */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}


.actions {
    text-align: center;
    margin-top: 24px;
}

.btn {
    padding: 15px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #500b8b, #7d10b9);
    color: white;
    box-shadow: 0 4px 15px rgba(11, 139, 128, 0.3);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #7c0a61, #820ea2);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(11, 139, 128, 0.4);
    }

.btn-secondary {
    background: linear-gradient(135deg, #0b5ed7 0%, #0a50c0 100%);
    color: white;
    border: 2px solid #0b8b80;
    box-shadow: 0 4px 15px rgba(11, 139, 128, 0.1);
}

    .btn-secondary:hover {
        background: linear-gradient(135deg, #115385 0%, #13366e 100%);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(11, 139, 128, 0.3);
    }

/* INFO BOX */
.info-box {
    background: linear-gradient(135deg, #f0f7f6 0%, #e0f0ee 100%);
    border: 1px solid rgba(11, 139, 128, 0.2);
    border-left: 4px solid #0b4ec1;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    position: relative;
}

    .info-box::before {
        content: 'ℹ️';
        position: absolute;
        left: -30px;
        top: 50%;
        transform: translateY(-50%);
        background: blue;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .info-box p {
        margin-bottom: 0px;
        line-height: 1.7;
    }

    .info-box b {
        color: blue;
    }

.main-container {
    max-width: 1200px;
    /*margin: 40px auto;*/
    margin: 8px auto;
    padding: 0 20px;
}

.main-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 1px solid rgba(11, 139, 128, 0.1);
    position: relative;
    overflow: hidden;
}

    .main-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, #7c2578, #c724a7);
    }

.main-header {
    text-align: center;
    margin-bottom: -24px;
}

.main-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e9f3f2 0%, #d4e8e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #0b8b80;
    box-shadow: 0 4px 15px rgba(11, 139, 128, 0.2);
}

.main-title {
    font-size: 20px;
    color: black;
    font-weight: 700;
    /*margin-bottom: 10px;*/
    margin: -33px 0px -4px 0px;
    letter-spacing: 0.5px;
}

.main-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}
/* FORM SECTION */
.form-section {
    /*margin: 40px 0;*/
    margin: 20px 0;
}

.form-section-title {
    font-size: 20px;
    color: black;
    font-weight: 700;
    /*margin-bottom: 25px;*/
    margin: -25px 0px 0px -1px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(11, 139, 128, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .form-section-title i {
        font-size: 18px;
    }

/* FORM INPUTS */
.input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 15px 1px 0px 0px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-label {
    font-weight: 600;
    color: black;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.input-field {
    position: relative;
}

    .input-field input {
        width: 100%;
        padding: 14px 45px 14px 15px;
        border: 2px solid #e1e5ea;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
        background: white;
    }

        .input-field input:focus {
            outline: none;
            border-color: #0b8b80;
            box-shadow: 0 0 0 3px rgba(11, 139, 128, 0.1);
        }

.input-icon {
    position: absolute;
    right: 15px;
    
    transform: translateY(-50%);
    color: black;
    font-size: 18px;
    display: flex;
    align-content: space-around;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    height: 65px;
    line-height: 60px;
}

/* Resgitration*/
.card {
    max-width: 1100px;
    margin: 20px auto;
    padding: 25px;
    /* BORDER */
    border: 2px solid #374151; /* Dark professional border */
    /* OPTIONAL polish */
    border-radius: 6px;
    background: #ffffff;
}

/* Optional inner spacing look */
.section-title {
    margin-top: 25px;
    font-weight: 600;
    color: #111827;
    border-bottom: 1px solid #9ca3af;
    padding-bottom: 6px;
    background: antiquewhite;
}

/* Print-friendly */
@media print {
    .card {
        border: 2px solid #000; /* Strong border on print */
        border-radius: 0;
    }
}


.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

    .info-table td {
        padding: 10px;
        border-bottom: 1px solid #e5e7eb;
        vertical-align: top;
    }

        .info-table td.label {
            font-weight: 600;
            color: #374151;
            width: 25%;
        }

        .info-table td.value {
            color: #111827;
            width: 25%;
        }

.info-text p {
    margin: 6px 0;
    line-height: 1.6;
}

.highlight {
    color: #2563eb;
    font-weight: 500;
}

.status {
    color: #16a34a;
    font-weight: 600;
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

    .doc-table th,
    .doc-table td {
        padding: 10px;
        border: 1px solid #d1d5db;
        text-align: left;
    }

    .doc-table th {
        background: #f3f4f6;
        font-weight: 600;
    }

.btn-print {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

    .btn-print:hover {
        background: #1d4ed8;
    }

.text-center {
    text-align: center;
}

.info-text {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 12px;
}

    .info-text p {
        margin: 0;
        line-height: 1.6;
        font-size: 14px;
    }

    .info-text strong {
        color: #374151;
    }

.highlight {
    color: #2563eb;
    font-weight: 500;
}

/* Responsive: 2 per row on tablets */
@media (max-width: 900px) {
    .info-text {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: 1 per row on mobile */
@media (max-width: 600px) {
    .info-text {
        grid-template-columns: 1fr;
    }
}

body {
    font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
    background: linear-gradient(180deg, #f4f6f9, #eef1f5);
    /* padding: 20px;*/
}

/* ===== Container ===== */
.container {
    max-width: 1400px;
    /*background: #ffffff;*/
    border-radius: 10px;
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.08);*/
    /*padding: 4px;*/
    /*margin: -14px 0px 0px 0px;*/
}

/* ===== Header ===== */
.header {
    /*background: linear-gradient(90deg, #ffeb70, #ffe14d);*/
    background: linear-gradient(135deg, #eba9ff, #86248f, #bd67c7, #db1bd9) !important;
    padding: 18px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
}

/* ===== Steps ===== */
.steps {
    display: flex;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    cursor: pointer;
    font-size: 13px;
    color: #6b7280;
    transition: all 0.3s ease;
    position: relative;
}

    .step i {
        font-size: 18px;
        margin-bottom: 6px;
        display: block;
    }

    .step.active {
        color: #0d6efd;
        font-weight: 600;
        background: #ede2d9;
    }

        .step.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 20%;
            width: 60%;
            height: 3px;
            background: #0d6efd;
            border-radius: 5px;
        }

    .step.completed i {
        color: #28a745;
    }

/* ===== Content ===== */
.content {
    padding: 30px;
}

/* ===== Card ===== */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    padding: 30px;
}

    /* ===== Section Title ===== */
    .card h5.text-primary {
        font-weight: 600;
        /*border-left: 4px solid #690376;*/
        padding-left: 10px;
    }

/* ===== Form Grid ===== */
.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 24px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 6px;
    }

.form-control {
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 6px 12px;
    font-size: 14px;
}

    .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.15rem rgba(13,110,253,.15);
    }

/* ===== Buttons ===== */
/*.btn-primary {
            padding: 10px 28px;
            font-weight: 600;
            border-radius: 6px;
        }*/

/* ===== Footer ===== */
.footer-note {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

.btn-primary {
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 6px;
    font-size: medium;
    background: linear-gradient(135deg, #500b8b, #7d10b9);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #7c0a61, #820ea2);
        transform: translateY(-3px);
        /*box-shadow: 0 6px 20px rgba(11, 139, 128, 0.4);*/
    }

.h5, h5 {
    font-size: 1.25rem !important;
}

.h6, h6 {
    font-size: 1rem !important;
}

@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.hero-banner {
    background: linear-gradient(135deg, #0b8b80 0%, #0a7269 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

    .hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,40 50,50 T100,50" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>');
        opacity: 0.5;
    }

    .hero-banner h1 {
        font-size: 32px;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

    .hero-banner p {
        font-size: 18px;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        opacity: 0.9;
    }



/* RESPONSIVE */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .header-actions {
        margin-top: 10px;
    }

    .menu {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }

        .menu a {
            padding: 12px 14px;
            font-size: 14px;
        }
}

@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 26px;
    }

    .footer-content {
        flex-direction: column;
    }

    .logo-section img {
        height: 60px;
    }

    .header-text .dept {
        font-size: 20px;
    }
}
