/* Move this into login.css */
body {
    background: radial-gradient(circle at top left, #0f0c29, #302b63, #24243e);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.login-card {
    background: rgba(15, 15, 30, 0.85);
    border: 2px solid #0ff;
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    from {
        box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
    }

    to {
        box-shadow: 0 0 25px #0ff, 0 0 50px #0ff;
    }
}

.form-control {
    background: transparent;
    border: 2px solid #0ff;
    color: #fff;
    border-radius: 10px;
    padding-left: 40px;
}

.form-control:focus {
    box-shadow: 0 0 15px #0ff;
    border-color: #0ff;
}

.input-group-text {
    background: transparent;
    border: none;
    color: #0ff;
}

.btn-login {
    background: #0ff;
    border: none;
    color: #000;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}

.btn-login:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px #0ff;
}

.forgot-link {
    color: #0ff;
    text-decoration: none;
    transition: 0.3s;
}

.forgot-link:hover {
    text-decoration: underline;
    color: #fff;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0ff;
}

.position-relative {
    margin-bottom: 20px;
}