@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800;900&display=swap');

@font-face {
    src: url(https://deliverit-vhosts-sync.s3-ap-southeast-2.amazonaws.com/mildtospicy.com.au/fonts/OhChewy.ttf);
    font-family: 'Oh Chewy';
}

body {
    width: auto !important;
    font-family: 'Poppins', sans-serif !important;
    background: linear-gradient(to bottom, rgb(20 20 20 / 0%), rgb(20 20 20 / 75%)), url(https://deliverit-vhosts-sync.s3-ap-southeast-2.amazonaws.com/mildtospicy.com.au/uploads/bg.jpg) no-repeat !important;
    background-position: top !important;
    background-attachment: fixed !important;
    background-size: cover !important;
/*     padding: 0px 350px; */
}

section.logo img {
    width: 350px;
    position: relative;
/*     transform: translateX(-10%) translateY(-50%); */
}

section.formmmm {
    background: #222;
    border: 2px solid #F1C443;
    box-shadow: 5px 5px 0px #F1C443;
    border-radius: 5px;
    width: 55% !important;
    margin: auto;
    padding: 20px;
    animation: pulse-yellow 2.6s infinite;
}

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 0 0 rgb(241 196 67 / 20%);
    }
    
    50% {
        box-shadow: 0 0 0 20px rgb(255 177 66 / 0%);
    }
    
    100% {
        box-shadow: 0 0 0 0 rgb(255 177 66 / 0%);
    }
}

.personalinfos, .eventinfos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

p.inquire_header {
    font-family: 'Oh Chewy', sans-serif;
    text-align: center;
    font-size: 50px;
    width: 95%;
    margin: auto;
    border-bottom: 2px solid #ffff;
    background: -webkit-linear-gradient(#F1C443, #F6552A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

label {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    margin: 5% auto;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#F1C443, #F6552A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.formbutton .form-control {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    margin-top: 3%;
    margin-bottom: 1%;
    background: #F1C443;
    border: 1px solid #F1C443;
    color: #141414;
    letter-spacing: 2px;
    font-size: 20px;
    padding: 10px;
    transition: 0.3s all ease;
}

.formbutton .form-control:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #F1C443;
}

.form-control:focus {
    border-color: #F1C443 !important;
    box-shadow: 0px 0px 5px rgb(241 196 67 / 50%) !important;
}

::placeholder {
    color: #a2a2a2 !important;
    font-size: 14px;
    text-transform: lowercase;
}

#sent p{
    color: #ffffff;
}

/* mobile view */
@media only screen and (max-height: 800px) and (min-height: 800px) {
    section.formmmm {
        width: 85% !important;
    }
}

@media (max-width: 768px) {
    section.formmmm {
        width: 95% !important;
    }
}

@media only screen and (max-height: 600px) and (min-height: 600px) {
    section.formmmm {
        width: 85% !important;
    }

    body {
        height: 130vh !important;
    }
}

@media (max-width: 540px) {
    body {
        height: 180vh !important;
    }
}

@media (max-width: 320px) {
    section.logo img {
        width: 250px;
    }
    
    section.formmmm {
        width: 85% !important;
    }

    p.inquire_header {
        font-size: 44px;
    }

    body {
        height: 200vh !important;
    }

    .formbutton .form-control {
        margin-top: 10%;
    }
}