

* {
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Background Gradient */

body {
    background: radial-gradient(
    circle at center,
    rgba(230, 240, 255, 0.15) 0%,   
    rgba(14, 54, 123, 0.6) 40%,     
    rgba(10, 10, 15, 1) 100%       );
  color: #fff;
  min-height: 100vh;
}


/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

.logo img {
    height: 45px;
}

.btn-login {
    padding: 10px 25px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn-login:hover {
    background: rgba(255,255,255,0.4);
}

/* HERO */
.hero {
    padding: 50px 60px;
}

.hero-content {
    display: flex;
    gap: 50px;
}

/* Video */
.video-wrapper {
    flex: 1.2;
    height: auto !important;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Right area */
.right-content {
    flex: 1;
}

.right-content h1 {
    font-size: 36px;
    font-weight: 700;
}

.right-content p {
    margin: 15px 0 25px;
    font-size: 15px;
}

/* Form box */
.form-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    color: #000;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.form-box h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Button */
.btn-primary {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    background: #0e367b;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-primary:hover {
    background: #0a2044;
}

.login-link {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #2e3c80;
    text-align: center;
}

/* Utility */
.hidden { display: none !important; }

.video-wrapper {
  position: relative; 
}

#overlay-end {
  position: absolute; 
  inset: 0; 
  display: none; 
  align-items: center; 
  justify-content: center; 
  background: rgba(0,0,0,0.8); 
  z-index: 10;
}
#overlay-end.active {
  display: flex;
}


/* Responsive */
@media(max-width: 640px) {
    .navbar{padding: 30px;}
    
    .btn-login{font-size: 12px; padding: 12px;}
    .logo img{height: 32px;}
    
    .hero{padding: 30px;}
    .hero-content {
        flex-direction: column;
    }

    .video-wrapper {
        width: 100%;
        height: 250px;
    }
    
    .right-content h1{font-size: 22px;}
}
