/* Reset štýlov */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Telo stránky */
body {
    background-color: #1a1a1a;
    color: #d0d0d0;
    margin: 0;
    height: 100vh;
}

/* Hero sekcia pre prihlásenie */
.hero-section.login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgb(0 0 0 / 58%), rgb(18 18 21 / 62%)), url(/img/pozadie.jpg) center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Dymová clona pre prihlásenie */
.title-smoke {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 150px;
    background: rgba(200, 200, 200, 0.2);
    filter: blur(20px);
    opacity: 0.6;
    z-index: 1;
    animation: smoke-move 8s ease-in-out infinite;
}

@keyframes smoke-move {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* Nadpis prihlásenia */
h2 {
    font-size: 3em;
    color: #8a8a8a;
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    text-shadow: 0px 0px 10px rgba(138, 138, 138, 0.5), 0px 0px 15px rgba(100, 100, 100, 0.4);
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

/* Prihlasovací formulár */
.auth-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    width: 320px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
    z-index: 2;
}

/* Štýly pre text pri formulári */
.auth-form label {
    color: #d0d0d0;
    margin-top: 10px;
    font-size: 1.1em;
    font-family: 'Playfair Display', serif;
    text-align: center;
    width: 100%;
}

/* Elegantný font pre vstupné polia */
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #8a8a8a;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #d0d0d0;
    font-size: 1em;
    font-family: 'Playfair Display', serif;
}

/* Tlačidlo prihlásenia */
.auth-form .btn {
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1.1em;
    color: #8a8a8a;
    border: 2px solid #8a8a8a;
    background: transparent;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.auth-form .btn:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Chybová správa */
#error-message {
    color: red;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
    font-family: 'Roboto', sans-serif;
}

.forgot-password-link {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9em;
    font-family: 'Playfair Display', serif;
}

.forgot-password-link:hover {
    text-decoration: underline;
}