/* assets/css/login.css */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: #0c0c0c url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0f0f0;
}

.overlay {
    background: rgba(12, 12, 12, 0.92);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
    width: 90%;
    max-width: 420px;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.overlay h1 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffffaa;
}

form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #1f1f1f;
    color: #ffffff;
    box-shadow: inset 0 0 5px #000000aa;
}

form input:focus {
    outline: none;
    box-shadow: 0 0 5px #00ffff;
}

form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background-color: #00ffff;
    color: #000000;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background-color: #00cccc;
}

p {
    color: #ff6b6b;
    margin-top: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}
