/* 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;
    overflow: hidden;
}

/* Hero sekcia pre registráciu */
.hero-section.register {
    position: fixed;
    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;
    padding: 30px;
    background-attachment: fixed;

}

/* Názov „Registrácia“ nad boxom */
.hero-section.register 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;
}

.hero-section.register h3 {
    font-size: 1.5em;
    color: #8a8a8a;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

/* Kontajner pre registráciu */
.registration-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    width: 800px;
    height: 80vh;
    overflow-y: auto;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
    margin-top: 10px; /* Posunutie celého boxu vyššie */
}

/* Pravidlá používania */
.terms-of-use {
    margin-bottom: 20px;
    text-align: center;
    color: #b0b0b0;
    font-family: 'Playfair Display', serif;
}

.terms-of-use h3 {
    font-size: 1.5em;
    color: #8a8a8a;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

/* Štýly pre text v pravidlách používania */
.terms-of-use p {
    font-size: 0.9em;
    line-height: 1.4;
}

/* Štýly pre formulár */
.auth-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-family: 'Playfair Display', serif;
}

.auth-form-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #8a8a8a;
    text-align: center;
    margin-bottom: 20px;
}

.auth-form h2 {
    font-size: 2em;
    color: #8a8a8a;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    text-align: center;
}

/* Štýly pre vstupné polia */
.auth-form label {
    color: #d0d0d0;
    margin-top: 5px;
    font-size: 1em;
    width: 100%;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 35%; /* Zmenšené na kratšiu šírku */
    padding: 8px; /* Menší padding */
    margin: 12px 0;
    border: 1px solid #8a8a8a;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #d0d0d0;
    font-size: 1em;
    font-family: 'Playfair Display', serif;
}

/* Tlačidlo registrácie */
.auth-form .btn {
    padding: 12px 25px;
    font-size: 1em;
    color: #8a8a8a;
    border: 2px solid #8a8a8a;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30%; /* Šírka zladená s inputmi */
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
}

.auth-form .btn:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Skrolovateľná sekcia pre kontajner */
.registration-container::-webkit-scrollbar {
    width: 8px;
}

.registration-container::-webkit-scrollbar-thumb {
    background-color: #8a8a8a;
    border-radius: 4px;
}

.registration-container::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1);
}


@media (max-width: 768px) {
    body {
        overflow: auto;
    }

    .registration-container {
        display: flex;
        flex-direction: column;
        padding: 20px 15px;
        width: 95%;
        height: auto;
        overflow-y: visible;
        box-shadow: none;     
        padding: 10px;
        border-radius: 10px;
        height: 80vh;
        overflow-y: auto;
        box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
        margin-top: 10px; /* Posunutie celého boxu vyššie */
        margin-bottom: 150px;
    }

    .terms-of-use,
    .auth-form {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .terms-of-use h3,
    .auth-form h3 {
        font-size: 1.4em;
        text-align: center;
    }

    .terms-of-use p {
        font-size: 0.95em;
        line-height: 1.5em;
        text-align: justify;
        word-wrap: break-word;
    }

    .auth-form input[type="text"],
    .auth-form input[type="email"],
    .auth-form input[type="password"],
    .auth-form .btn {
        width: 70%;
        max-width: 70%;
        font-size: 1em;
    }

    .checkbox-group {
        font-size: 0.95em;
        text-align: left;
        margin-top: 10px;
    }

    .btn {
        margin-top: 15px;
        padding: 10px 15px;
        font-size: 1em;
    }

    .registration-title {
        font-size: 2em;
        margin-bottom: 15px;
        text-align: center;
    }

    .hero-section.register {
        padding: 20px 10px;
    }
    
    /* Skrolovateľná sekcia pre kontajner */
    .registration-container::-webkit-scrollbar {
        width: 8px;
    }

    .registration-container::-webkit-scrollbar-thumb {
        background-color: #8a8a8a;
        border-radius: 4px;
    }

    .registration-container::-webkit-scrollbar-track {
        background-color: rgba(255, 255, 255, 0.1);
    }
}