/* =========================
   ROOT (THEME COLOR)
========================= */
:root {
    --primary: #6366f1;
    --secondary: #22c55e;
    --glass: rgba(255,255,255,0.08);
    --border: rgba(255,255,255,0.2);
    --text: #e5e7eb;
}


/* =========================
   GLOBAL
========================= */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #020617;
    color: var(--text);
}


/* =========================
   VIDEO BACKGROUND
========================= */
.bg-video-inside {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6);
    animation: zoomVideo 30s infinite alternate ease-in-out;
}

/* OVERLAY GRADIENT MODERN */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(99,102,241,0.25),
        rgba(2,6,23,0.95)
    );
    z-index: 1;
}

/* CONTENT */
.content-video {
    position: relative;
    z-index: 2;
    text-align: center;
}


/* =========================
   LOGO + TITLE
========================= */
.logo-img {
    width: 180px;
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 40px rgba(99,102,241,0.7));
    animation: float 4s ease-in-out infinite;
}

.content-video h1 {
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(99,102,241,0.6);
}

.content-video p {
    font-size: 16px;
    opacity: 0.85;
}


/* =========================
   CARD (NEON GLASS)
========================= */
.card {
    border-radius: 20px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: 
    0 0 30px rgba(99,102,241,0.2),
    inset 0 0 10px rgba(255,255,255,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}


/* =========================
   FORM
========================= */
.form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid transparent;
    color: #fff;
    border-radius: 0 12px 12px 0;
    transition: 0.3s;
}

.form-control:focus {
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px var(--primary);
    background: rgba(255,255,255,0.12);
    color: white;
}

.input-group-text {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    border-radius: 12px 0 0 12px;
}


/* =========================
   BUTTON (NEON STYLE)
========================= */
.btn-primary {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
    0 0 20px #6366f1,
    0 0 40px rgba(99,102,241,0.6);
}

.btn-success {
    border-radius: 12px;
}


/* =========================
   ANIMATION
========================= */
@keyframes zoomVideo {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .container-fluid {
        height: auto !important;
    }

    .row {
        flex-direction: column;
        height: auto !important;
    }

    /* VIDEO ATAS */
    .col-md-7 {
        height: 28vh;
        min-height: 180px;
    }

    /* LOGIN */
    .col-md-5 {
        width: 100%;
        padding: 20px;
    }

    /* CARD */
    .card {
        width: 100% !important;
        margin-top: 15px;
    }

    /* TEXT */
    .content-video h1 {
        font-size: 18px;
    }

    .content-video p {
        font-size: 13px;
    }

    /* LOGO */
    .logo-img {
        width: 100px;
    }
}
/* =========================
   CONTACT INFO
========================= */
.contact-info {
    color: #cbd5e1;
    font-size: 14px;
}

.contact-info i {
    margin-right: 6px;
    color: #6366f1;
}

/* SOCIAL ICON */
.social-icons a {
    display: inline-block;
    margin: 0 8px;
    font-size: 20px;
    color: #e5e7eb;
    transition: 0.3s;
}

/* HOVER EFFECT */
.social-icons a:hover {
    color: #6366f1;
    transform: scale(1.2);
}


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .contact-info {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .social-icons a {
        font-size: 18px;
    }
    /* DROPZONE MODERN */
    .dropzone {
        position: relative;
        border: 2px dashed #3b82f6;
        border-radius: 16px;
        padding: 25px;
        text-align: center;
        cursor: pointer;
        background: rgba(255,255,255,0.03);
        transition: all 0.3s ease;
        color: #cbd5e1;
    }

/* HOVER */
.dropzone:hover {
    border-color: #6366f1;
    background: rgba(59,130,246,0.08);
    transform: scale(1.01);
}

/* ICON */
.dropzone::before {
    content: "\f03e"; /* icon image */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
    color: #3b82f6;
}



.form-card {
    background: #1e293b;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    color: #fff;
}

/* LABEL */
.form-card label {
    color: #cbd5f5;
    font-weight: 500;
}

/* INPUT */
.form-control, .custom-select {
    border-radius: 10px;
    border: none;
    padding: 10px;
}

/* BUTTON */
.btn-primary {
    border-radius: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg,#3b82f6,#6366f1);
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* TITLE */
.page-title {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}


}