@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.2s linear;
}

body{
    /* overflow: ; */
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: radial-gradient(rgba(0, 0, 139, 0.726));
}

header{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    padding: 2%;
}

main{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main #sec-1 #title{
    font-weight: bolder;
    font-size: 10vw;
    font-family: "Fuzzy Bubbles", sans-serif;
    background: -webkit-linear-gradient(#d5d5d5, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 5px white);
}

main #sec-1 #caption{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgba(245, 245, 245, 0.648);
    font-size: 2vw;
}

main #sec-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
}



main #sec-1 #getStarted {
    width: 30%;
    height: 5vh;
    background-color: darkblue;
    color: skyblue;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 1.2vw;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

main #sec-1 #getStarted:hover {
    background-color: skyblue;
    color: darkblue;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

main #sec-1 #getStarted:active {
    background-color: rgb(170, 221, 241);
    color: darkblue;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

main #sec-1 #title:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 10px white);
}

main #sec-1 #caption:hover {
    color: white;
    transform: translateY(-5px);
}

.loader{
    width: 5rem;
    height: 5rem;
    border-top: dotted white;
    border-left: dotted white;
    animation: loader 1s linear infinite;
    border-radius: 2.5rem;
}


@keyframes loader{
    0%{
        transform: rotate(0);
    }

    100%{
        transform: rotate(360deg);
    }
}



#generalCard{
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(black ,rgba(0, 0, 0, 0.753));
    top: 0;
    left: 0;
    animation: fadeIn 0.7s linear;
    display: flex;
    align-items: center;
    justify-content: center;
}


@keyframes fadeIn {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 0.9;
    }
}


#innerGeneralCard{
    padding: 10%;
    width: 70%;
    height: fit-content;
    background-color: #FFF;
    display: flex;
    flex-direction: row;
    gap: 10rem;
}


#innerGeneralCard form{
    display: flex;
    flex-direction: column;
}



@media(max-width: 1000px){
    #innerGeneralCard {
        display: flex;
        gap: 10rem;
        flex-direction: column;
    }
}

#formDiv{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
}


#signUpH1{
    /* color: transparent; */
    text-align: justify;
}


#formDiv form{
    padding: 4%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 0.2em;
}

#formDiv form input[type="text"] , 
#formDiv form input[type="number"] , 
#formDiv form input[type="email"]  

{
    width: 100%;
    border: none;
    border-bottom: SOLID;
    outline: none;
}


.carousel-control-prev-icon , .carousel-control-next-icon{
    background-color: transparent;
    opacity: 0;
}

#formDiv form input[type="submit"]:hover{
    background-color: black;
    border: none;
    border-radius: 1rem;
    color: black;
    color: white;
}
#formDiv form input[type="submit"]:active{
    background-color: rgba(0, 0, 0, 0.767);
}   

#formDiv form input[type="submit"]{
    background-color: white;
    border: solid;
    color: black;
}