/* Global styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Auth container */
.auth-container {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
}

/* Title */
.auth-container h2 {
    margin-bottom: 25px;
    background: linear-gradient(135deg, #e50914 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
}

/* Input fields */
.auth-container input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    outline: none;
    background: #222;
    color: #fff;
    font-size: 14px;
}

/* Input focus */
.auth-container input:focus {
    border: 1px solid #e50914;
    box-shadow: 0 0 6px rgba(229, 9, 20, 0.8);
}

/* Buttons */
.auth-container button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #e50914 0%, #ff6b35 100%);
    transition: 0.3s;
}

.auth-container button:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

/* Links */
.auth-container a {
    display: inline-block;
    margin-top: 15px;
    color: #ff6b35;
    text-decoration: none;
    font-size: 14px;
}

.auth-container a:hover {
    text-decoration: underline;
}
