@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

body {
    background-color: #121212;
    color: white;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* Kártya stílus */
.auth-container {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 12px;
    width: 90%; /* Mobilon ne lógjon ki */
    max-width: 350px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-top: 4px solid #cc0000; /* RIX PIROS */
    position: relative;
}

h2 {
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

/* Mezők */
input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #2b2b2b;
    border: 1px solid #444;
    color: white;
    border-radius: 6px;
    box-sizing: border-box; /* Fontos, hogy ne csússzon szét */
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

input:focus {
    border-color: #cc0000;
    outline: none;
    background: #333;
}

/* Gombok alapbeállítása */
button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Elsődleges gomb (Belépés) */
.btn-primary {
    background-color: #cc0000;
    color: white;
}

.btn-primary:hover {
    background-color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}

/* Google Gomb (Javított) */
.btn-google {
    background-color: white;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-transform: none; /* Google név maradjon normál */
    font-weight: 600;
}

.btn-google:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}

.btn-google i {
    color: #DB4437; /* Google piros */
    font-size: 18px;
}

/* Linkek */
.link {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.link:hover {
    color: #cc0000;
}