@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800;900&display=swap');

@font-face {
    src: url('https://d2ova09jg8x3xk.cloudfront.net/seasideshahi.com.au/fonts/OhChewy.ttf');
    font-family: 'Oh Chewy';
}

body {
    width: auto !important;
    font-family: 'Poppins', sans-serif !important;
    background: url('https://d2ova09jg8x3xk.cloudfront.net/seasideshahi.com.au/uploads/shahi-vid-bg.jpg') no-repeat !important;
    background-position: top !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    /*     padding: 0px 350px; */
}

section.logo img {
    width: 220px;
    position: relative;
    margin: 60px;
    /*     transform: translateX(-10%) translateY(-50%); */
}

section.formmmm {
    background: #fff;
    border: 2px solid #08648c;
    box-shadow: 5px 5px 0px rgb(8 100 140);
    border-radius: 5px;
    width: 60% !important;
    margin: auto;
    padding: 20px;
    animation: pulse-yellow 2.6s infinite;
}

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 0 0 rgb(8 100 140 / 20%);
    }

    50% {
        box-shadow: 0 0 0 20px rgb(8 100 140/ 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(8 100 140 / 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(#62c2cf, #08648c);
    -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(#62c2cf, #08648c);
    -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: #62c2cf;
    border: 1px solid #08648c;
    color: #08648c;
    letter-spacing: 2px;
    font-size: 20px;
    padding: 10px;
    transition: 0.3s all ease;
}

.formbutton .form-control:hover {
    background: #08648c;
    color: #fff;
    border: 1px solid #08648c;
}

.form-control:focus {
    border-color: #08648c !important;
    box-shadow: 0px 0px 5px rgb(8 100 140 / 50%) !important;
}

::placeholder {
    color: #a2a2a2 !important;
    font-size: 14px;
    text-transform: lowercase;
}

#sent p {
    color: #08648c;
    text-align: center;
    font-size: 20px;
    background-color: #d6b36a;
    width: fit-content;
    margin: auto;
    padding: 20px;
}

/* mobile view */

@media (max-width: 1440px) {

    section.formmmm {
        width: 70% !important;
    }
}

@media (max-width: 1300px) {

    section.formmmm {
        width: 80% !important;
    }
}

@media (max-width: 1024px) {
    section.logo img {
        width: 180px;
    }

    section.formmmm {
        width: 90% !important;
    }
}

@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;
    }

    section.logo img {
        width: 160px;
        margin: 50px
    }
}

@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;
    }

    section.logo img {
        width: 140px;
        margin: 40px
    }
}

@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%;
    }
}