body {
    font-family: 'Poppins', sans-serif;
    margin: 0 auto; 
    width: 100%;       
}

h1, h6 {
    margin: 0;
}

#landing-page-container {
    height: 100%;
    width: 100%;
}

#landing-page-image{
    width: 100%;
    height: 65%;
    object-fit: cover;
    filter: contrast(100%);
}

#landing-page-intro-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background-color: #ef424c;
    border-top-right-radius: 15%;
    border-top-left-radius: 15%;
}

#intro-primary-text {
    font-size: 1.5rem;
    padding: 10% 7% 2% 7%;
    color: white;
}

#intro-secondary-text {
    font-size: .9rem;
    font-weight: 400;
    padding: 0 7%;
    margin-bottom: 5%;
    color: white;
}

#intro-action-container {
    display: flex;
    width: 100%;
    height: 54px;
    flex-direction: row;
    margin-right: 20%;
}

#intro-btn-container {
    width: 45%;
    margin-left: 7%;
}

#insta-logo {
    width: 32px;
    height: 32px;
    padding: 11px;
    border-radius: 22px;
    margin-left: 12px;
    background-color: ivory;
    object-fit: cover;
}

#event-form-container {
    width: 100%;
    height: 115%;
    display: none;
}

#header {
    width: 15em;
    padding-top: 1em;
    margin: 2em auto;
}

#header-text {
    color: #303f9f;
    text-align: center;
    font-size: 2em;
}

/* #form-container {
    width: 100%;
    height: 100%;
} */

form {
    width: 85%;
    height: 40em;
    margin: 0 auto;
}

.text-field {
    width: 100%;
    height: 48px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    padding: .6em .4em;
    margin: .4em 0;
    border: none;
    background-color: #eceff1;
    outline: none;
    border-radius: 4px;
}

.multitext-field {
    width: 100%;
    height: 6em;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    padding: .4em .4em;
    margin: .4em 0;
    border: none;
    background-color: #eceff1;
    outline: none;
    border-radius: 4px;
}

.input-label {
    color: #303f9f;
    font-size: .8em;
    font-weight: normal;
    margin: .2em 0 0 0;
}

.btn-container {
    width: 65%;
    height: 54px;
    margin: 0 auto 5% auto;
}

.button {
    width: 100%;
    height: 100%;
    border-radius: 64px;
    border: none;
    background-color: #303f9f;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

#finish-up-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    text-align: center;
}

#loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: white;
    display: none;
}

#loading-indicator {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #ec407a;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#logo-placeholder {
    width: 150px;
    height: 100px;
    margin: 35% 0 0 0;
}

#prompt-text {
    font-weight: 400;
    font-size: 1em;
    width: 80%;
    margin: 10% auto;
}

@media only screen and (min-width: 400px) {
    #intro-primary-text {
        font-size: 1.8rem;
        padding: 15% 10% 2% 10%;
    }
    
    #intro-secondary-text {
        font-size: 1rem;
        padding: 0 10%;
    }

    #intro-btn-container {
        margin-left: 10%;
    }

    #prompt-text {
        margin: 15% auto;
    }
    
}

@media only screen and (min-height: 800px) {
    #intro-primary-text {
        padding: 17% 10% 2% 10%;
    }
    
    #intro-secondary-text {
        padding: 1% 10%;
        font-size: 1.1rem;
    }

    #intro-btn-container {
        margin-left: 10%;
    }
}



@media only screen and (min-width: 600px) {

    body {
        width: 80%;
    }

    #landing-page-container {
        display: none;
    }

    #event-form-container {
        display: block;
    }

    #header {
        width: 25em;
        margin: 2em auto;
    }

    #header-text {
        color: #303f9f;
        font-size: 3.5em;
    }

    /* #form-container {
        width: 100%;
        height: 100%;
    } */

    form {
        width: 60%;
        height: 52em;
        margin: 0 auto;
    }

    .text-field {
        width: 100%;
        height: 60px;
        font-size: 1.2em;
    }

    .multitext-field {
        width: 100%;
        height: 6em;
        font-size: 1.2em;
    }

    .input-label {
        color: #303f9f;
        font-size: 1em;
        font-weight: normal;
        margin: .2em 0 0 0;
    }

    .btn-container {
        width: 35%;
        height: 65px;
        margin: 0 auto 4em auto;
    }

    .button {
        width: 90%;
        height: 100%;
        font-size: 1.2em;
    }

    #finish-up-container {
        width: 100%;
    }

    #logo-placeholder {
        width: 150px;
        height: 100px;
        margin: 5% 0 1% 0;
    }
    
    #prompt-text {
        font-size: 1.4em;
        width: 35%;
        margin: 5% auto;
    }
    
}


@media only screen and (min-width: 1025px) {

    body {
        width: 60%;
    }
}
 