/* ==========================================
   REPORT PAGE
========================================== */

.report-container {
    width: 100%;
    padding: 50px 20px;

    background: #f6f3ff;

    min-height: 100vh;
}


/* ==========================================
   REPORT CARD
========================================== */

.report-card {
    width: 90%;
    max-width: 1200px;

    margin: auto;

    background: white;

    border-radius: 25px;

    padding: 45px 55px 35px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}


/* ==========================================
   REPORT HEADER
========================================== */

.report-header {
    text-align: center;
    margin-bottom: 30px;
}

.report-header h2 {
    color: #45208C;
    margin-bottom: 10px;
}


/* ==========================================
   FORM
========================================== */

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    font-weight: 600;

    margin-bottom: 8px;

    color: #45208C;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px;

    border: 1px solid #ddd;

    border-radius: 10px;

    font-size: 15px;

    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6F42C1;
}


/* ==========================================
   FULL WIDTH FIELD
========================================== */

.full-width {
    grid-column: 1 / -1;
}


/* ==========================================
   FILE UPLOAD
========================================== */

input[type="file"] {
    width: 100%;

    padding: 12px;

    border: 1px solid #ddd;

    border-radius: 10px;

    background: white;

    font-size: 15px;

    cursor: pointer;
}


/* ==========================================
   SUBMIT BUTTON
========================================== */

.submit-btn {
    width: 100%;

    background: #6F42C1;

    color: white;

    border: none;

    padding: 15px;

    border-radius: 10px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.submit-btn:hover {
    background: #45208C;
}

