/* Login Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier Prime', monospace;
    margin: 0;
    padding: 20px;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
    width: 100%;
    max-width: 450px;
}

h1 {
    margin: 0 0 30px 0;
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #999;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 14px;
    border: 1px solid #333;
    border-radius: 2px;
    box-sizing: border-box;
    font-size: 14px;
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Courier Prime', monospace;
    transition: all 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #fff;
    background-color: #000;
}

input::placeholder {
    color: #555;
}

button {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Courier Prime', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

button:hover {
    background: #fff;
    color: #000;
}

.error {
    background: #2a0000;
    color: #ff6666;
    padding: 12px;
    border-radius: 2px;
    border: 1px solid #550000;
    margin-bottom: 20px;
    text-align: center;
    font-size: 13px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 480px) {
    body {
        padding: 15px;
    }

    .login-container {
        padding: 30px 25px;
    }

    h1 {
        font-size: 22px;
    }

    input[type="text"],
    input[type="password"] {
        padding: 12px;
        font-size: 13px;
    }

    button {
        padding: 12px;
        font-size: 14px;
    }

    label {
        font-size: 12px;
    }
}
