        
* {
    box-sizing: border-box;
}
        
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    -webkit-user-select: none; 
    -ms-user-select: none;
    user-select: none;
}

.login-box {
    width: 90%;
    max-width: 400px;
    padding: 30px;
    background: rgba(0,0,0,0.85);
    border-radius: 12px;
    box-shadow: 0 0 25px #32cd32;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInUp 0.8s forwards;
}

        /* Animation */
        @keyframes fadeInUp {
		    0% {
		        opacity: 0;
		        transform: translateY(30px);
		    }
		    100% {
		        opacity: 1;
		        transform: translateY(0);
		    }
		}

        .login-box:hover {
		    box-shadow: 0 0 40px #32cd32;
		    transition: 0.3s;
		}

        /* Logo */
        .login-box img {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
        }

        /* Headings */
        .login-box h2 > {
            margin: 10px 0;
            font-size: 26px;
            font-weight: 600;
        }

         .login-box h2 >span {
            color: #32cd32; 
            font-size:32px;
         }
        .login-box h3 {
            margin: 0 0 25px;
            font-family: cursive;
            font-weight: 400;
            font-size: 16px;
            color: #fff;
        }

        /* Input boxes */
        .input-box {
            margin-bottom: 20px;
        }
        .input-box input {
            width: 100%;
            padding: 12px 10px;
            background: transparent;
            border: none;
            border-bottom: 2px solid #fff;
            outline: none;
            color: #fff;
            font-size: 15px;
            transition: 0.3s;
        }
        .input-box input:focus {
            border-bottom-color: #32cd32;
            box-shadow: 0 0 10px #32cd32;
        }

        /* Login button */
        .login-btn {
            width: 100%;
            padding: 12px;
            border: none;
            margin-top: 20px;
            border-radius: 50px;
            font-size: 16px;
            cursor: pointer;
            background: #32cd32;
            color: #000;
            font-weight: 600;
            transition: 0.3s ease;
            box-shadow: 0 0 12px #32cd32;
        }
        .login-btn:hover {
            box-shadow: 0 0 25px #32cd32;
            transform: scale(1.05);
        }

        /* Bottom text links */
        .bottom-text {
            margin-top: 20px;
            font-size: 14px;
        }
        .bottom-text a {
            color: #32cd32;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }
        .bottom-text a:hover {
            text-shadow: 0 0 10px #32cd32;
        }
 