body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #0e0b16;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #fff;
    overflow: hidden;
}

.login-container {
    background: rgba(14, 11, 22, 0.9);
    border: 2px solid #06f9ff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px #06f9ff;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

h1 {
    color: #06f9ff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

label {
    font-size: 18px;
    color: #06f9ff;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    font-size: 16px;
    background-color: #0e0b16;
    border: 2px solid #06f9ff;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(6, 249, 255, 0.5);
    outline: none;
    transition: all 0.3s ease;
}

input:focus {
    box-shadow: 0 0 15px rgba(6, 249, 255, 0.8);
}

.login-btn {
    background-color: #06f9ff;
    color: #0e0b16;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #05c9cc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #0e0b16, #1f1b30, #0e0b16, #1f1b30);
    background-size: 400% 400%;
    animation: gradient 6s ease infinite;
    z-index: -1;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
