@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


@media only screen and (max-width: 768px) {
    body{
        margin: 0;
        padding: 0;
        width: 100vw;
        height: 100vh;
        background-color: #152238;
        text-align: center;
        font-family: 'Poppins', sans-serif;
    }
    h1{
        color: white;
    }
    
    .img-container{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    img{
        width: 150px;
    }
    form{
        align-items: center;
        text-align: center;
        margin: 0 auto;
        display: table;
        padding-bottom: 4rem;
    }
    .location_div{
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        color: white;
        margin: 1rem;
    }

    .Name-Email_div{
        display: flex;
        flex-direction: column;
    }

    input{
        height: 25px;
        width:200px;
        border: white 2px solid;
        background-color: transparent;
        border-radius: 10px;
        text-decoration: none;
        padding-left: 10px;
        color: white;
    }

    select{
        height: 25px;
        width:200px;
        border: white 2px solid;
        background-color: transparent;
        border-radius: 10px;
        text-decoration: none;
        padding-left: 10px;
        color: white;
    }

    select:focus{
        outline: none;
    }

    form button{
        margin: 0 auto;
        height: 30px;
        width: 90px; 
        color: white;
        font-weight: 400;
        border: white 2px solid;
        border-radius: 10px;
        background-color: transparent;
    }
    button:hover{
        cursor: pointer;
    }

    option {
        margin: 40px;
        background: white;
        color: #152238;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    }

    input[type="date"]::-webkit-calendar-picker-indicator, input[type="time"]::-webkit-calendar-picker-indicator {
        filter: invert(1);
    } 

    .buttonWrapper{
        text-align: center;
    }

    input:focus{
        outline: none;
    }

    input::placeholder{
        color: white;
        padding-left: 10px;
    }
}

@media only screen and (min-width: 800px){

    body{
        margin: 0;
        padding: 0;
        width: 100vw;
        height: 100vh;
        background-color: #152238;
        text-align: center;
        font-family: 'Poppins', sans-serif;
    }
    h1{
        color: white;
    }

    .img-container{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    form{
        align-items: center;
        text-align: center;
        margin: 0 auto;
        display: table;
    }

    input{
        height: 25px;
        width:200px;
        border: white 2px solid;
        background-color: transparent;
        border-radius: 10px;
        text-decoration: none;
        padding-left: 10px;
        color: white;
    }

    select{
        height: 25px;
        width:200px;
        border: white 2px solid;
        background-color: transparent;
        border-radius: 10px;
        text-decoration: none;
        padding-left: 10px;
        color: white;
    }

    select:focus{
        outline: none;
    }

    .location_div{
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        color: white;
        margin: 1rem;
    }

    .form-wrapper{
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 60vw;
        margin: 0 auto;
    }

    form button{
        margin: 0 auto;
        height: 30px;
        width: 90px; 
        color: white;
        font-weight: 400;
        border: white 2px solid;
        border-radius: 10px;
        background-color: transparent;
    }
    button:hover{
        cursor: pointer;
    }

    option {
        margin: 40px;
        background: white;
        color: #152238;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    }

    input[type="date"]::-webkit-calendar-picker-indicator, input[type="time"]::-webkit-calendar-picker-indicator {
        filter: invert(1);
    } 

    .buttonWrapper{
        text-align: center;
    }

    input:focus{
        outline: none;
    }

    input::placeholder{
        color: white;
        padding-left: 10px;
    }

    .Name-Email_div{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
}