/* =========================
   GLOBAL
========================= */
body {
    background: linear-gradient(135deg, #f4f6f9, #e9edf5);
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

/* =========================
   LOGIN PAGE
========================= */
.container-login100 {
    background: #6f42c1;
}

.wrap-login100 {
    background: #fff;
    border-radius: 20px;
}

.login100-form-title {
    color: #000;
}

.login100-form-btn {
    background-color: #6f42c1;
    transition: .3s;
}

.login100-form-btn:hover {
    background-color: #5a32a3;
}

.input100:focus + .focus-input100 {
    color: rgba(111,66,193,.8);
}

.input100:focus + .focus-input100 + .symbol-input100 {
    color: #6f42c1;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: white;
    padding: 14px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.navbar-brand img {
    height: 55px;
}

.navbar-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* =========================
   PAGE LAYOUT
========================= */
.page-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    margin: 40px 0;
}

/* =========================
   HERO
========================= */
.hero-section {
    background: linear-gradient(135deg,#6f42c1,#4e2a84);
    color: white;
    text-align: center;
    padding: 45px 30px;
}

.hero-logo {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
}

.hero-logo img {
    max-width: 80%;
    max-height: 80%;
}

.hero-title {
    font-size: 30px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 16px;
    opacity: .9;
}

/* =========================
   CONTENT
========================= */
.content-section {
    padding: 35px;
    text-align: center;
}

.custom-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
    margin-bottom: 30px;
}

.custom-card-header {
    background: #f8f9fc;
    padding: 18px 25px;
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #ececec;
}

.custom-card-body {
    padding: 25px;
}

/* =========================
   FORM
========================= */
.custom-card label,
.form-label {
    font-weight: 600;
    color: #495057;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #dcdfe6;
}

.form-control:focus,
.form-select:focus {
    border-color: #6f42c1;
    box-shadow: 0 0 0 .15rem rgba(111,66,193,.15);
}

/* radios */
.form-check-input:checked {
    background-color: #6f42c1;
    border-color: #6f42c1;
}

/* section titles */
.form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #6f42c1;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(111,66,193,.15);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* =========================
   BUTTONS
========================= */
.btn-primary,
.btn-success {
    background: #6f42c1;
    border-color: #6f42c1;
    border-radius: 10px;
    font-weight: 600;
}

.btn-primary:hover,
.btn-success:hover {
    background: #5a32a3;
    border-color: #5a32a3;
}

.btn-outline-primary {
    border: 2px solid #6f42c1;
    color: #6f42c1;
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: #6f42c1;
    color: white;
}

/* =========================
   TABLES
========================= */
.table {
    border-radius: 12px;
    overflow: hidden;
}

.table thead th,
.table-standard thead {
    background: #343a40;
    color: white;
    white-space: nowrap;
}

.table tbody tr:hover {
    background: #f8f5ff;
}

/* =========================
   LINKS
========================= */
a:hover {
    color: #5a32a3;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .content-section {
        padding: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-logo {
        width: 90px;
        height: 90px;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .navbar-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

        