body.sotet-tema {
    background-color: #0b0b13;
    color: #fff;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Fredoka', sans-serif;
}

.auth-kontener {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 10;
    padding: 20px;
}

.auth-doboz {
    background: rgba(15, 15, 25, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.auth-fejlec {
    text-align: center;
    margin-bottom: 20px;
}

.auth-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: -20px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.auth-fejlec h1 {
    font-family: 'Fredoka', sans-serif;
    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;
}

.auth-fejlec p {
    font-family: 'Fredoka', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.auth-form.aktiv {
    display: flex;
}

.rejtett {
    display: none !important;
}

.input-csoport {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-csoport label {
    font-family: 'Fredoka', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
}

.input-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px 12px 45px;
    border-radius: 12px;
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.input-wrapper input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.auth-gomb {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.auth-gomb:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.valtó-szoveg {
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.valtó-szoveg span {
    color: #ffd700;
    cursor: pointer;
    font-weight: 600;
}

.valtó-szoveg span:hover {
    text-decoration: underline;
}

.vissza-gomb {
    font-family: 'Fredoka', sans-serif;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.vissza-gomb:hover {
    background: rgba(255, 255, 255, 0.1);
}

#uzenet-doboz {
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    margin-bottom: 20px;
    text-align: center;
}

#uzenet-doboz.hiba {
    background: rgba(255, 75, 75, 0.2);
    border: 1px solid rgba(255, 75, 75, 0.4);
    color: #ff8080;
}

#uzenet-doboz.siker {
    background: rgba(75, 255, 125, 0.2);
    border: 1px solid rgba(75, 255, 125, 0.4);
    color: #80ffab;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0.4) inset !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

@media (max-width: 480px) {
    .auth-kontener {
        padding: 15px;
        align-items: flex-start;
        padding-top: 80px;
    }

    .auth-doboz {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .auth-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 6px;
    }

    .auth-fejlec h1 {
        font-size: 21px;
    }

    .auth-fejlec p {
        font-size: 13px;
    }

    .vissza-gomb {
        top: 15px;
        left: 15px;
        padding: 8px 14px;
        font-size: 13px;
    }
}