* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

a {
  color: #000 !important;
  text-decoration: none !important;
}

p {
  font-family: 'poppins', sans-serif;
  font-weight: 400;
}

body {
  background: linear-gradient(to right, #D38312, #A83279);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.header-box {
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.header-box img {
  width: 80px;
  margin-bottom: 10px;
}

.header-box h3 {
  font-weight: 700;
  margin-bottom: 5px;
}

.header-box p {
  font-size: 14px;
  opacity: 0.9;
}

.login-card {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-tabs .nav-link {
  border: none;
  color: #6c757d;
  font-weight: 600;
}

.nav-tabs .nav-link.active {
  color: #0d6efd;
  border-bottom: 3px solid #0d6efd;
  background: transparent;
}

.form-control {
  border-radius: 10px;
  padding: 12px;
}

.btn-login {
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
}


.heroadmin {
  min-height: 100vh;
  position: relative;
}

.login-cardadmin {
  border-radius: 16px;
  background: #ffffff;
}

.gradient-bg {
  position: absolute;
  /* inset: 0; */
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  opacity: 0.08;
}


 #curtain-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 99999;
        overflow: hidden;
    }

    /* Curtains */
    .curtain {
        position: absolute;
        top: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(135deg, #8B0000, #b22222);
        transition: all 1.8s ease-in-out;
    }

    .left-curtain {
        left: 0;
    }

    .right-curtain {
        right: 0;
    }

    /* COUNTDOWN BOX */
    .countdown-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        z-index: 100000;
    }

    #countdown {
        font-size: 90px;
        font-weight: bold;
        font-family: Arial;
        animation: pulse 1s infinite;
    }

    .countdown-box p {
        font-size: 18px;
        margin-top: 10px;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.2);
        }

        100% {
            transform: scale(1);
        }
    }

    /* OPEN STATE */
    .open .left-curtain {
        transform: translateX(-100%);
    }

    .open .right-curtain {
        transform: translateX(100%);
    }

    .open .countdown-box {
        opacity: 0;
        transition: 0.5s;
    }




/* Responsive Design */
@media (max-width: 768px) {}

@media (max-width: 480px) {}









@media only screen and (max-width: 600px) {}


@media only screen and (max-width: 991px) and (min-width: 601px) {}