* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.wrapper {
    width: 100%;
    max-width: 380px;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

.est {
    color: #ff6b00;
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: bold;
}

h1 {
    font-size: 2.2rem;
    line-height: 0.9;
    letter-spacing: 2px;
}

.outline {
    color: transparent;
    -webkit-text-stroke: 1px #444;
}

.login-card {
    border-top: 1px solid #222;
    padding-top: 40px;
}

h2 {
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.tagline {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 40px;
}

.input-container {
    margin-bottom: 25px;
}

label {
    display: block;
    font-size: 10px;
    color: #555;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    padding: 12px 0;
    font-size: 16px; /* Prevents auto-zoom on mobile */
    outline: none;
    border-radius: 0;
}

input:focus {
    border-bottom: 1px solid #fff;
}

button {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 18px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 20px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

button:hover {
    background: #ddd;
}

#error-msg {
    color: #ff4444;
    font-size: 11px;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    .wrapper { padding: 10px; }
}


.admin-gate {
    margin-top: 30px;
    text-align: center;
}

.admin-gate a {
    font-size: 10px;
    font-weight: 800;
    color: #8e8e93;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.admin-gate a:hover {
    color: #ff6b3d;
}