@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@property --deg {
    syntax: '<angle>';
    inherits: true;
    initial-value: 0deg;
}

@keyframes autoRotate {
    to {
        --deg: 360deg;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

:root {
    --main-c: #B38563;
    --alt-c: #000000;
    --tert-2c: #000000;
    --tert-2c: #e3e8f5;
    --border-default: 8px solid #684b36;
    --border-r-default: 16px;
    --font: 'Montserrat', Arial;
    --bg-c: #04040d;
    --bg-c-2: #B38563;
    --blue: #191970;
    --gold: #cdba5c;
    --light-blue: #305cde;
    --sec-bg: #0b071e;
    --color: #C0C0C0;
}

body {
    font-family: var(--font);
    box-sizing: border-box;
    background-color: var(--bg-c);
    color: var(--tert-2c)
}

.ocsohero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../assets/ocso-main-hero.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    border-bottom: var(--border-default);
    border-radius: 0 0 30px 30px;
    width: 100%;
    border-radius: var(--border-r-default);
}

.header {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

header {
    height: 80%;
    width: 70%;
    border: var(--border-default);
    border-radius: var(--border-r-default);
    color: var(--tert-2c);
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--bg-c);
    text-align: center;
    padding: 20px;
}

.navbar {
    flex-direction: row;
    row-gap: 20px;
    height: 30%;
    width: max-content;
    border: #012248 solid 4px;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: var(--border-r-default);
    color: var(--tert-2c);
    padding: 12px;
}

.navbar img {
    display: flex;
    align-items: left;
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.navbar a {
    color: var(--tert-2c);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #324358;
}

.what-we-do-container {
    align-items: center;
    background-color: var(--bg-c);
    border: var(--border-default);
    border-radius: var(--border-r-default);
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 75px;
    padding: 20px;
}

.what-we-do {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    width: 100%;
}

.intro-section {
    display: flex;
    align-items: center;
    border-bottom: 2px double var(--tert-2c);
    height: 25%;
    justify-content: center;
    flex-direction: column;
    font-size: 1.5em;
}

.columnwrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    min-width: 280px;
}

.left {
    border-right: 1px solid var(--tert-2c);
    padding-right: 20px;
    width: 50%;
    height: 75%;
}

.right {
    padding-left: 20px;
    width: 50%;
    height: 75%;
}

.fvmpdhero p {
    color: var(--tert-2c);
    font-size: 1em;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.5);
}

footer {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    color: var(--tert-2c);
    border: var(--border-default);
    height: 40%;
    border-radius: var(--border-r-default);
    background-color: var(--bg-c);
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;

}

footer p {
    margin: 5px 0;
    font-size: large;
}

.login-container {
    background-color: var(--bg-c-2);
    border: var(--border-default);
    border-radius: var(--border-r-default);
    color: var(--tert-2c);
    display: flex;
    width: 500px;
    height: 450px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    text-align: center;
    gap: 5px;
    padding: 20px;
}

.login-container img {
    border-radius: 50px;
    width: 150px;
    height: 150px;
}

.accessKey,
.badgeNumber,
.pin {
    background-color: #4975a8;
    border: 5px solid #012248;
    color: #000;
    border-radius: var(--border-r-default);
    width: 250px;
    height: 40px;
}

.accessKey::placeholder,
.badgeNumber::placeholder,
.pin::placeholder {
    color: #000;
    font-weight: bolder;
    font-family: var(--font);
    text-align: center;
}

.EnterDashboardBtn {
    background-color: #4975a8;
    border: 5px solid #012248;
    color: #000;
    border-radius: var(--border-r-default);
    font-weight: bolder;
    font-family: var(--font);
    text-align: center;
    height: 40px;
    cursor: crosshair;
}

.btndivider {
    width: 100%;
    height: 10px;
    display: block;
}

.EnterDashboardBtn:hover {
    box-shadow: 0 0 20px #6993c0;
}

.welcome-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: var(--main-c);
    border: 2px solid #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 69;
    text-align: center;
    border-radius: 8px;
    color: var(--alt-c);
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.5em;
}

.spinningcircle {
    width: 50px;
    height: 50px;
    border: 10px solid #f3f3f3;
    border-top: 10px solid #0099ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.sidenav {
    width: 280px;
    min-width: 280px;
    background: #0b071e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-r-default);
    padding: 24px 20px;
    height: fit-content;
}

.sidenav p {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--tert-2c);
}

.sidenav a {
    display: block;
    margin: 8px 0;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.sidenav a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--tert-2c);
    border-left: 3px solid #d4af37;
}

.sidenav a:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.08);
    color: var(--tert-2c);
}

.groupcontainer {
    display: flex;
    flex-direction: column;
    margin-left: 350px;
    padding: 20px;
    color: white;
    width: 1050px;
}

.main-info-db {
    background-color: var(--sec-bg);
    color: var(--color);
    border: var(--border-default);
    border-radius: var(--border-r-default);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
}

.leftdb {
    padding: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    height: 100%;
}

.rightdb,
.rightdbs,
.rightdba {
    flex: 2;
    padding: 30px;
    max-width: 850px;
    align-items: flex-start;
    gap: 15px;
    border-left: var(--border-default);

    h2 {
        text-align: center;
    }

    .top {
        display: flex;
        flex-direction: row;
        gap: 25px;
        justify-content: center;
        padding-bottom: 20px;
    }

    .middle {
        display: flex;
        flex-direction: row;
        gap: 25px;
        justify-content: center;
        padding-bottom: 20px;
    }

    .bottom {
        display: flex;
        flex-direction: row;
        gap: 25px;
        justify-content: center;
        width: 100%;
    }

    button {
        display: flex;
        position: relative;
        transform-style: preserve-3d;
        color: var(--alt-c);
        background-color: var(--gold);
        max-width: 225px;
        max-height: 225px;
        width: 200px;
        height: 200px;
        border: var(--border-default);
        border-radius: var(--border-r-default);
        align-items: center;
        text-align: center;
        font-size: x-large;
        font-weight: bolder;
        cursor: pointer;
        padding: 10px 5px;
        justify-content: center;
        gap: 10px;
    }

    button::before,
    button::after {
        content: "";
        position: absolute;
        top: -10px;
        bottom: -10px;
        right: -10px;
        left: -10px;
        transform: translateZ(-1px);
        background: conic-gradient(from var(--deg) at center,
                #fff, #739dff, #9884ff, #bcfeff, #fff, #bcfeff, #9884ff, #739dff, #fff);
        border-radius: inherit;
        z-index: -2;
        animation: autoRotate 8s linear infinite;
    }

    button::after {
        filter: blur(10px);
    }

}


.pin-management {
    color: var(--tert-2c);
    border-radius: var(--border-r-default);
    position: relative;
    z-index: 10;
    margin-top: 10px;
    padding: 20px;
    transform-style: preserve-3d;
    width: 250px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.pinInput {
    background-color: #4975a8;
    border: 5px solid #012248;
    color: #000;
    border-radius: var(--border-r-default);
    width: 240px;
    height: 40px;
}

.pinBtn {
    background-color: var(--sec-bg);
    color: var(--tert-2c);
    border: 2px solid var(--bg-c);
    font-weight: bolder;
    width: 250px;
}

.pinInput::placeholder {
    color: #000;
    font-weight: bolder;
    text-align: center;
}

video#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.warnings {
    background-color: var(--bg-c);
    color: var(--tert-2c);
    border: var(--border-default);
    border-radius: var(--border-r-default);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 620px;
    width: 100%;
    margin: 50px auto;
    padding: 30px;
    gap: 14px;
}

.warnings h2 {
    font-size: 2rem;
    margin: 0;
}

.warnings p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.warnings h4 {
    font-size: 1.25rem;
    margin: 0;
}


.warn1dropdown,
.warn2dropdown,
.warn3dropdown {
    background-color: var(--gold);
    color: var(--blue);
    font: var(--font);
    border-radius: 12px;
    border: 3px solid #f4d65a;
    margin: 10px 0;
    width: 100%;
    height: auto;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 22px;
    box-sizing: border-box;
}

.warn1Btn,
.warn2Btn,
.warn3Btn {
    background-color: transparent;
    color: var(--blue);
    font-size: 16px;
    font: var(--font);
    border: none;
    cursor: pointer;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.dropdown-content {
    display: none;
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
}

.notices {
    background-color: var(--bg-c);
    color: var(--tert-2c);
    border: var(--border-default);
    border-radius: var(--border-r-default);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 620px;
    width: 100%;
    margin: 50px auto;
    padding: 30px;
    gap: 14px;
}

.notices h2 {
    font-size: 2rem;
    margin: 0;
}

.notices p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.notices h4 {
    font-size: 1.25rem;
    margin: 0;
}



.notice1dropdown,
.notice2dropdown,
.notice3dropdown {
    background-color: var(--gold);
    color: var(--blue);
    font: var(--font);
    border-radius: 12px;
    border: 3px solid #f4d65a;
    margin: 10px 0;
    width: 100%;
    height: auto;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 22px;
    box-sizing: border-box;
}

.notice1Btn,
.notice2Btn,
.notice3Btn {
    background-color: transparent;
    color: var(--blue);
    font-size: 16px;
    font: var(--font);
    border: none;
    cursor: pointer;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.quota {
    background-color: var(--bg-c);
    color: var(--tert-2c);
    border: var(--border-default);
    border-radius: var(--border-r-default);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 620px;
    width: 100%;
    margin: 50px auto;
    padding: 30px;
    gap: 14px;
}

.quota h2 {
    font-size: 2rem;
    margin: 0;
}

.quota p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.quota h4 {
    font-size: 1.25rem;
    margin: 0;
}

.dpage-layout {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.spage-layout {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.apage-layout {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.apage-layout2 {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
}

.dheader {
    background: #060314;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
}

.dnavbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.dnavbar img {
    width: 40px;
    height: auto;
    border-radius: 8px;
}

.dnavbar .nav-links {
    display: flex;
    gap: 12px;
    margin-left: 12px;
}

.dnavbar a {
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease;
    color: var(--tert-2c);
}

.dnavbar a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dnavbar a.logout {
    color: #ff7b7b;
    background: rgba(255, 123, 123, 0.05);
    margin-left: auto;
}

.dnavbar a.logout:hover {
    background: rgba(255, 123, 123, 0.15);
}

.page-layout {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
}

.sidenav {
    width: 280px;
    min-width: 280px;
    background: #0b071e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-r-default);
    padding: 24px 20px;
    height: fit-content;
}

.sidenav p {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--tert-2c);
}

.sidenav a {
    display: block;
    margin: 8px 0;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.sidenav a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--tert-2c);
    border-left: 3px solid #d4af37;
}

.sidenav a:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.08);
    color: var(--tert-2c);
}

.training-container, .reference-container {
    flex: 1;
    background-color: var(--bg-c);
    color: var(--tert-2c);
    border: var(--border-default);
    border-radius: var(--border-r-default);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    width: 100%;
    padding: 40px;
    gap: 24px;
}

.noticecontainer, .warncontainer, .quotacontainer {
    flex: 1;
    color: var(--tert-2c);
    border: var(--border-default);
    border-radius: var(--border-r-default);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    width: 100%;
    padding: 40px;
    gap: 24px;
}

.training-container h2, .reference-container h2 {
    margin: 0;
    color: var(--tert-2c);
    font-size: 2.2rem;
    font-weight: 800;
}

.training-container h3, .reference-container h3 {
    margin: 20px 0 0 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--tert-2c);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 12px;
}

.accordion-item {
    width: 100%;
}

.accordion-btn {
    width: 100%;
    background-color: #d4af37;
    color: #09031e;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    text-align: left;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 12px;
    transition: background-color 0.25s ease, transform 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.accordion-btn:hover {
    background-color: #bfa030;
}

.accordion-btn.warning {
    color: #5e0b0b;
    background-color: #ffe6b3;
}

.accordion-btn.warning:hover {
    background-color: #f7d189;
}

.accordion-content {
    display: none;
    background-color: #050a17;
    padding: 24px;
    border-left: 4px solid #d4af37;
    border-radius: 0 0 14px 14px;
    color: #e8ebf2;
    margin-top: -4px;
}

.accordion-content p {
    margin: 0 0 16px;
}

.accordion-content ul {
    margin: 12px 0 0 18px;
    padding-left: 0;
}

.accordion-content li {
    list-style: disc;
    margin-bottom: 8px;
}

.rookieform {
    display: inline-flex;
    align-self: flex-start;
    text-decoration: none;
    background-color: #0f1735;
    color: #d4af37;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rookieform:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.training-popup, .reference-popup {
    position: fixed;
    inset: 0;
    padding: 24px;
    background-color: rgba(8, 10, 28, 0.98);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    cursor: pointer;
}

.training-popup h1, .reference-popup h1 {
    max-width: 720px;
    margin: 0 0 18px;
    font-size: 2.2rem;
    color: var(--tert-2c);
    font-weight: 800;
}

.training-popup p, .reference-popup p {
    max-width: 720px;
    margin: 0;
    line-height: 1.8;
    color: #e4e9fb;
    font-size: 16px;
}

@media (max-width: 960px) {
    .page-layout {
        flex-direction: column;
        padding: 20px 16px;
    }

    .sidenav {
        width: 100%;
        min-width: 100%;
    }

    .training-container {
        padding: 24px;
    }

    .dnavbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dnavbar .nav-links {
        margin-left: 0;
    }

    .dnavbar a.logout {
        margin-left: 0;
        margin-top: 10px;
    }
}

.support {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-login);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 25px;
    width: min(90%, 460px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.supportcard,
.supportform {
    width: 100%;
}

.supportcard {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.supportcard img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--text-blur);
}

.supportform {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

.supportform h2,
.supportform label {
    color: #ffffff;
    text-align: left;
}

.supportform h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.supportform form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.supportform label {
    display: block;
    margin-bottom: -6px;
    font-size: 14px;
    text-align: left;
}

.supportform input,
.supportform textarea,
.supportform select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.supportform textarea {
    min-height: 120px;
    resize: vertical;
}

.supportform select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.supportform input:focus,
.supportform textarea:focus,
.supportform select:focus {
    border-color: #a445f2;
    box-shadow: 0 0 0 3px rgba(164, 69, 242, 0.16);
}

.supportform input::placeholder,
.supportform textarea::placeholder,
.supportform i {
    color: rgba(255, 255, 255, 0.75);
}

.supportform-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.supportform select option {
    background-color: #17112e;
    color: var(--tert-2c);
    border-radius: 8px;
}

.supportform-options div {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #ffffff;
}

.supportform-options a {
    color: #fff98f;
    text-decoration: none;
}

.submitbuttonsupport {
    width: 100%;
    margin-top: 20px;
    padding: 12px 8px;
    color: #ffffff;
    border: 0;
    border-radius: 10px;
    font-weight: bold;
    background: linear-gradient(135deg, #b076ee, #a445f2, #a445f2, #b076ee);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.requestform {
    max-width: 760px;
    margin: 0 auto 36px;
    background: linear-gradient(180deg, rgba(23,17,46,0.6), rgba(23,17,46,0.45));
    border: 1px solid rgba(255,255,255,0.06);
    padding: 26px;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 6px 30px rgba(4,4,12,0.6);
}
.requestform h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.requestform p {
    color: rgba(255,255,255,0.85);
    margin: 6px 0 18px;
    line-height: 1.45;
}
.requestform label {
    display: block;
    margin: 12px 0 6px;
    font-weight: 600;
    color: #eaeaf6;
}
.requestform select,
.requestform textarea,
.requestform input[type="text"],
.requestform input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #fff;
    outline: none;
    transition: box-shadow .18s ease, border-color .12s ease;
}
.requestform select option {
    background: #17112e;
    color: var(--tert-2c);
}
.requestform textarea { resize: vertical; min-height: 110px; }
.requestform select:focus,
.requestform textarea:focus,
.requestform input:focus {
    box-shadow: 0 6px 18px rgba(100,65,165,0.12);
    border-color: rgba(164,69,242,0.9);
}
.requestform button[type="submit"] {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 10px;
    border: 0;
    background: linear-gradient(90deg, #6b9cff, #7a6bff);
    color: #0f1022;
    font-weight: 700;
    cursor: pointer;
}
.requestform button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(106,90,255,0.16);
}


