/* Alapbeállítások */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle, #2b1103 0%, #000000 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* CSAK a külső doboz legyen keretes és sötét */
.login-container {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 102, 0, 0.1);
    width: 350px;
    text-align: center;
    border: 1px solid #2a2a2a;
}

/* A form maga legyen teljesen láthatatlan stílus szempontjából */
form {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

h2 {
    color: #ff6600;
    font-size: 2.2em;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

p {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 20px;
}

/* Hibaüzenet doboz */
.error {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85em;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    display: block;
}

/* Beviteli mezők */
input {
    width: 100%;
    padding: 14px 15px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: #262626 !important;
    color: white !important;
    font-size: 1em;
    box-sizing: border-box;
    transition: 0.3s;
}

/* Autofill javítás sötét módhoz */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0px 1000px #262626 inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

input:focus {
    border-color: #ff6600;
    outline: none;
    background-color: #2d2d2d !important;
}

/* Belépés gomb */
button {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6600 0%, #cc5200 100%);
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

/* Alsó rész */
.form-footer {
    margin-top: 25px;
    border-top: 1px solid #2a2a2a;
    padding-top: 20px;
}

.form-footer a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}