/* LOGIN PAGE */
.login-section {
     position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
       /* background: linear-gradient(to right, rgb(0 0 0), rgb(120 8 9), rgb(0 0 0)); */
    /* min-height: 100vh; */
    
}

.login-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.75); */
}
.login-section {
    position: relative;
    overflow: hidden;
}

/* container */
.fire-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* sparks */
.fire-particles span {
    position: absolute;
    bottom: -50px;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ffcc00, #ff3b00);
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3b00, 0 0 20px #ff6a00;
    animation: fireRise linear infinite;
    opacity: 0;
}

/* random positions */
.fire-particles span:nth-child(1){ left:10%; animation-duration:6s; }
.fire-particles span:nth-child(2){ left:20%; animation-duration:8s; width:8px; height:8px; }
.fire-particles span:nth-child(3){ left:35%; animation-duration:5s; }
.fire-particles span:nth-child(4){ left:50%; animation-duration:7s; width:10px; height:10px; }
.fire-particles span:nth-child(5){ left:65%; animation-duration:6s; }
.fire-particles span:nth-child(6){ left:75%; animation-duration:9s; }
.fire-particles span:nth-child(7){ left:85%; animation-duration:5s; }
.fire-particles span:nth-child(8){ left:95%; animation-duration:7s; }

/* animation */
@keyframes fireRise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(-900px) translateX(50px) scale(1.2);
        opacity: 0;
    }
}
.login-box {
       position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
       /* background: linear-gradient(to right, rgb(0 0 0), rgb(120 8 9), rgb(0 0 0)); */
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 40px;
    color: #fff;
    
}

.login-box h2 {
    font-weight: 700;
    margin-bottom: 10px;    color: #000;
}

.login-box p {
    color: #000;
    margin-bottom: 25px;
}

.login-box input {
     width: 100%;
    height: 50px;
    margin-bottom: 15px;
    border: none;
    padding: 0 15px;
    border-radius: 6px;
    background: rgb(213 208 208 / 31%);
    color: #000;
}

.login-box input::placeholder {
    color: #bbb;
}

.login-box input:focus {
    outline: none;
    
}

.login-btn {
     width: 100%;
    height: 50px;
    border: none;
    background: #fff;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
    background: linear-gradient(180deg, #792b2b, #bb1516);
    border-radius: 50px;
}


.extra-links {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.extra-links a {
  
    
    color: #6c6868;
    text-decoration: none !important;
}

.extra-links a:hover {
    text-decoration: underline;
}

.logo-login {
    text-align: center;
    margin-bottom: 20px;
}

.logo-login img {
    max-width: 80px;
}