/* style.css */
:root {
    --primary-color: #FFD700; /* Gold / Dark Yellow */
    --primary-hover: #e6c200;
    --bg-dark: #121212;       /* Deep Black */
    --bg-card: #1E1E1E;       /* Dark Gray for Box */
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --border-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Login Container Styling */
.box {
    background: var(--bg-card);
    width: 100%;
    max-width: 400px; /* Laptop/PC width limit */
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15); /* Yellow Glow */
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

input {
    width: 100%;
    padding: 12px 15px;
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 6px;
    outline: none;
    transition: border 0.3s;
}

input:focus {
    border-color: var(--primary-color);
    background: #333;
}

/* Button Styling */
button {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: #000; /* Black text on yellow button */
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.1s;
}

button:hover {
    background: var(--primary-hover);
}

button:active {
    transform: scale(0.98);
}

/* Responsive Design Tweaks */
@media (max-width: 480px) {
    .box {
        padding: 30px 20px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}