body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0b0c10;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}
header {
    background: linear-gradient(45deg, #0f0c29, #302b63, #24243e);
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 230, 230, 0.5);
    border-radius: 10px;
}
header h1 {
    margin: 0;
    color: #fff;
    font-size: 2.5em;
    text-shadow: 0 0 10px #00e6e6;
}
nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}
nav ul li {
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    color: #00e6e6;
    text-decoration: none;
    font-size: 1.2em;
    transition: all 0.3s ease;
}
nav ul li a:hover {
    text-shadow: 0 0 10px #00e6e6;
    transform: scale(1.1);
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}
.login-container {
    background-color: #1b1f3a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 230, 230, 0.7);
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}
.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 230, 230, 0.2), transparent);
    animation: rotate 6s linear infinite;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.login-container h2 {
    color: #00e6e6;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px #00e6e6;
}
form {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
form label {
    margin-bottom: 5px;
    color: #00e6e6;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
form input {
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #e0e0e0;
    outline: none;
    transition: background-color 0.3s ease;
}
form input:focus {
    background-color: #444;
}
form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #00e6e6;
    color: #121212;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
form button:hover {
    background-color: #00cccc;
    transform: scale(1.05);
}
footer {
    text-align: center;
    padding: 10px;
    background-color: #0f0c29;
    color: #e0e0e0;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 0 20px rgba(0, 230, 230, 0.5);
}

