﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section1{
    position: relative;
    height: auto;
    overflow: hidden;
}

.header-container {
    height: 20vh;
    background-color: #97a6b4;
    display: flex;
    justify-content: center;
}

.header-container img{
    padding: clamp(2rem, 2vw, 7rem);
}

.request-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    background-color: #224260;

}

.request-container h1{
    font-family: 'Kamerik105', sans-serif;
    font-size: 3vw;
    padding: clamp(2rem, 2vw, 5rem);
    color: white;

}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Kamerik105-Book',sans-serif;
    color: #224260;
}

/*MULTI STEP FORM*/

.multi-step-wrapper {
    background-color: #224260;
    font-family: 'Kamerik105-Book',sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.multi-step-wrapper h1 {
    font-size: 2vw;
    padding: 0;
    margin-bottom: 1vh;
}

.tab {
    display: none;
}

.tab-wrapper {
    color: #224260;
    font-size: 1.5rem;
    background-color: white;
    padding: clamp(2rem, 2vw, 4rem);
    border-radius: 15px;
    width: 45vw;
}


.input-wrapper {
    margin-bottom: 3vh;
    
}

.input-wrapper input {
    padding: 8px;
    width: 100%;
}

.input-wrapper select {
    padding: 8px;
    width: 100%;
}

.input-wrapper textarea {
    font-family: 'Kamerik105-Book', sans-serif;
    width: 100%;
    height: 150px;
    padding: 12px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    resize: none;
}

.input-wrapper p {
    margin-top: 10px;
    margin-bottom: 10px;
}

input.invalid {
    background-color: #ffdddd;
}

.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

.step.finish {
    background-color: #356796;
}


.multistep-btn-container {
    overflow: auto;
    margin-top: 2rem; 
}

.multistep-btn {
    float: right;
    display: flex;
    gap: 10px;
}

.btn-nav {
    padding: 10px 20px;
    border: none;
    background-color: white;
    color: #224260;
    cursor: pointer;
    border-radius: 6px;
    font-family: 'Kamerik105-Book', sans-serif;
    font-size: 1.5rem;
    transition: 0.2s ease-in-out;
}


.btn-nav.primary {
    background-color: white;
    color: #224260;
}

.desc-input-wrapper {
    position: relative;
    margin-bottom: 3vh;

}

.hidden-textbox {
    display: none;
}

/*MULTI STEP FORM END*/

.disclaimer-container {
    width: 72vw;
    font-family: 'Kamerik105', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.8vw, 50px);
    padding: clamp(2rem, 2vw, 5rem);
}

.disclaimer-container p{
    color: white;
}

.disclaimer-container a{
    color: #00d6f2;
    cursor: pointer;
}

.btn-submit-hidden {
    display: none;
}

.divider-container{
    font-family: 'Century Gothic', sans-serif;
    color: #224260;
    height: auto;
    display: flex;
    justify-content: center;
}

.divider-container p {
    font-size: clamp(20px, 3vw, 80px);
    padding: clamp(2rem, 2vw, 5rem);
    white-space: pre-line;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .request-container h1 {
        font-size: 6vw;
        padding: clamp(2rem, 2vw, 5rem);
    }

    .disclaimer-container {
        width: 72vw;
        font-family: 'Kamerik105', sans-serif;
        font-weight: 600;
        font-size: clamp(14px, 2vw, 30px);
        padding: 10px 0;
    }

    .submit-btn-container {
        font-size: 1rem;
        width: 20vw;
        cursor: pointer;
    }

    .request-container h1 {
        font-size: 3vw;
    }


    .tab-wrapper {
        width: 60vw;
        font-size: 1rem;
    }

    .btn-nav {
        font-size: 1rem;
    }


}

@media (max-width: 430px) {
    .request-container h1 {
        font-size: 8vw;
        padding: clamp(2rem, 2vw, 5rem);
    }

    .disclaimer-container {
        width: 100vw;
        font-family: 'Kamerik105', sans-serif;
        font-weight: 600;
        font-size: 4vw;
        padding: clamp(2rem, 1vw, 5rem);
    }

    .submit-btn-container {
        width: 30vw;
        margin-top: 1rem;
    }

    .request-container h1 {
        font-size: 5vw;
    }

    .tab-wrapper {
        width: 100vw;
        font-size: 1rem;
    }

    .btn-nav {
        font-size: 1rem;
    }
}

