/* css/login.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #050505;
    font-family: Consolas, monospace;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00ff88;
}

.login-container {
    width: 400px;
    padding: 40px;
    border: 1px solid #00ff88;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    box-shadow: 0 0 20px #00ff88;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00ff88;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    margin-bottom: 20px;
    padding: 12px;
    background: #0d0d0d;
    border: 1px solid #00ff88;
    color: #00ff88;
    outline: none;
    border-radius: 5px;
}

input::placeholder {
    color: #00aa66;
}

button {
    padding: 12px;
    background: transparent;
    border: 1px solid #00ff88;
    color: #00ff88;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    font-family: Consolas, monospace;
}

button:hover {
    background: #00ff88;
    color: black;
    box-shadow: 0 0 15px #00ff88;
}

.register-btn {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #00ff88;
    color: #00ff88;
    cursor: pointer;
    transition: 0.3s;
}

.register-btn:hover {
    background: #00ff88;
    color: black;
}