﻿/*.required {
    color: #dc3545;
    margin-left: 4px;
}

.section-title {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

h2, .form-label {
    color: white;
}*/

html, body {
    min-height: 100%;
}

body {
    background: radial-gradient(circle at top left, rgba(180, 30, 45, 0.20), transparent 35%), radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 30%), linear-gradient(135deg, #0b0d10 0%, #11151b 50%, #0b0d10 100%);
    color: #f5f7fa;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.dubgang-page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.dubgang-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent);
}

.hero-card,
.form-card {
    background: rgba(15, 19, 24, 0.82);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.03);
    backdrop-filter: blur(16px);
}

.hero-card {
    padding: 2rem;
}

.form-card {
    padding: 2rem;
}

.dubgang-logo {
    max-width: 360px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,0.25));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #d8dee8;
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #c8d0db;
    margin-bottom: 0;
}

.form-label {
    color: #f1f4f8;
    margin-bottom: .55rem;
    font-size: .98rem;
    letter-spacing: .01em;
}

.required {
    color: #ff4d5a;
    font-weight: 700;
}

.input-dark {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: #ffffff !important;
    border-radius: 18px !important;
    box-shadow: none !important;
    transition: all .18s ease;
}

    .input-dark::placeholder {
        color: #9ca7b5;
    }

    .input-dark:focus {
        background: rgba(255,255,255,0.08) !important;
        border-color: rgba(255, 77, 90, 0.9) !important;
        box-shadow: 0 0 0 .2rem rgba(255, 77, 90, 0.18) !important;
        color: #ffffff !important;
    }

.textarea-dark {
    min-height: 135px;
    resize: vertical;
}

.file-dark {
    padding: .75rem 1rem;
}

select.input-dark {
    color: #ffffff !important;
    background: rgba(255,255,255,0.06) !important;
}

select.input-dark option {
    color: #000000;
    background: #ffffff;
}

/* Některé prohlížeče částečně respektují */
select.input-dark option:hover,
select.input-dark option:focus,
select.input-dark option:checked {
    background: #c61f2b;
    color: #ffffff;
}

.section-separator {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,77,90,0), rgba(255,77,90,.6), rgba(255,255,255,0.05));
    margin-top: .5rem;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: 1.45rem;
    font-weight: 750;
    margin-bottom: .2rem;
    color: #ffffff;
}

.validation-box ul {
    margin-bottom: 0;
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 2rem;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff4d5a 0%, #b91526 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 16px 35px rgba(185, 21, 38, 0.35);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

    .btn-register:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 40px rgba(185, 21, 38, 0.45);
        color: #ffffff;
    }

    .btn-register:active {
        transform: translateY(0);
    }

@media (max-width: 991.98px) {
    .hero-card,
    .form-card {
        padding: 1.35rem;
        border-radius: 22px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .dubgang-logo {
        max-width: 290px;
    }
}