* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a23;
    color: #00ffcc;
    font-family: 'Orbitron', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.login-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hologram-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.login-box {
    background: rgba(10, 10, 35, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
    position: relative;
    overflow: hidden;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    text-shadow: 0 0 10px #00ffcc;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.2rem;
    text-align: center;
    color: #00ccff;
    margin-bottom: 2rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #00ffcc;
    border-radius: 5px;
    color: #00ffcc;
    outline: none;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ffcc;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-group input:focus~label,
.input-group input:valid~label {
    top: 0;
    font-size: 0.8rem;
    color: #00ccff;
}

.glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ffcc, #00ccff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.input-group input:focus~.glow {
    transform: scaleX(1);
}

button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(45deg, #00ffcc, #00ccff);
    border: none;
    border-radius: 5px;
    color: #0a0a23;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
}