body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #121212;
}

.splash-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to top */
    min-height: 100vh;
    width: 100%;
    padding: 5rem 2rem; /* Added more top padding */
    overflow: hidden; /* Hide overflow from pseudo-element */
}

.splash-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') no-repeat center center/cover;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
    z-index: 1;
}

.splash-wrapper > * {
    position: relative;
    z-index: 2;
}

.splash-container {
    max-width: 1100px;
    width: 100%;
}

.header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.header-section h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 0 25px rgba(255, 82, 82, 0.9), 0 0 15px rgba(255, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.animated-text {
    font-size: 1.6rem;
    font-weight: 300;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-text span {
    border-right: .1em solid white;
    animation: blink-caret .8s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white; }
}

.main-content {
    background-color: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-container {
    position: relative;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #000;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.slider-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 1.8s ease-in-out;
    transform: scale(1.1);
}

.slider-image.active {
    opacity: 1;
    transform: scale(1);
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100%;
}

.form-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #444;
}

.form-tab {
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    background: none;
    color: #aaa;
    transition: color 0.3s, border-bottom 0.3s, transform 0.2s;
    position: relative;
    top: 2px;
    border-bottom: 3px solid transparent;
}

.form-tab:hover {
    color: #fff;
}

.form-tab:focus {
    outline: 0 !important;
}

.form-tab.active {
    color: #fff;
    border-bottom: 3px solid #e60000;
}

.form-content {
    display: none;
}

.form-content.active {
    display: block;
}

.form-group label {
    font-weight: 700;
    margin-bottom: .6rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
    padding: 1.5rem 1rem;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #e60000;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(230, 0, 0, 0.4);
}

.form-control::placeholder {
    color: #999;
}

.btn-submit {
    background: linear-gradient(45deg, #00b300, #008000);
    border: none;
    padding: 0.9rem;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 179, 0, 0.3);
}

.footer {
    text-align: center;
    padding-top: 3rem;
    font-size: 0.9rem;
    color: #aaa;
}

@media (max-width: 480px) {
    html .slider-container {
        height: 180px;
    }
    .header-section h1 {
        font-size: 2em;
    }
    .splash-wrapper {
        padding: 60px 0px;
    }
}