/* Fonts used */
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

/* Containers */

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: bold;
}

.formSec{
    width: auto;
    height: 1080px;

    background: url(../images/Background\ Image.png) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.formCont {
    width: 600px;
    height: 450px;
    background: #FFFFFF;
    border: 5px solid #6D1C18;
    border-radius: 50px;
    margin: auto;
    margin-top: -185px;
    padding: 40px;
    position:relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.row {
    display: flex;
    gap: 20px;
}


/* Images */
.cuteChef {
    width: 761px;
    height: 609px;
    display: block;
    margin: auto;
}

/* Form Elements */

input {
    width: 540px;
    height: 50px;
    margin-top: 5px;
    padding: 15px;
    border-radius: 6px;
    border-width: 0px;
    background-color: #f2f2f2;
 

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000000;
}

.row input{
    width: 250px;
    height: 50px;
    margin-top: 5px;
    padding: 15px;
    border-radius: 6px;
    border-width: 0px;
    background-color: #f2f2f2;
 

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000000; 
}

input[type="submit"] {
    width: 540px;
    height: 50px;
    background-color: #FFC6C4;
    border: 0px;
    border-radius: 6px;


    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: white;
    font-size: 16px;
    padding: 11px;

}

input[type="submit"]:hover {
    background-color: #f59592;
}

select {
    width: 540px;
    height: 50px;
    margin-top: 5px;
    padding: 15px;
    border-radius: 6px;
    border-width: 0px;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000000;
    background-color: #f2f2f2;
}



/* Responsive */

@media screen and (max-width: 765px) {
    body {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: bold;
    }
    
    .formSec{
        width: auto;
        height: 1080px;
    
        background: url(/images/Background\ Image.png) center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .formCont {
        width: 400px;
        height: 500px;
        background: #FFFFFF;
        border: 3px solid #6D1C18;
        border-radius: 50px;
        margin: auto;
        margin-top: -100px;
        padding: 20px;
        position:relative;
    
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .row {
        display: flex;
        gap: 10px;
    }

    /* Images */
    .cuteChef {
        width: 400px;
        height: auto;
        display: block;
        margin: auto;
    }
    
    /* Form Elements */

    input {
        width: 390px;
        height: 50px;
        margin-top: 5px;
        padding: 15px;
        border-radius: 6px;
        border-width: 0px;
        background-color: #f2f2f2;
    

        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        color: #000000;
    }

    .row input{
        width: 185px;
        height: 50px;
        margin-top: 5px;
        padding: 15px;
        border-radius: 6px;
        border-width: 0px;
        background-color: #f2f2f2;
     
    
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        color: #000000; 
    }

    input[type="submit"] {
        width: 390px;
        height: 50px;
        background-color: #FFC6C4;
        border: 0px;
        border-radius: 6px;
    
    
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        color: white;
        font-size: 16px;
        padding: 11px;
    
    }

    input[type="submit"]:hover {
        background-color: #f59592;
    }
    
    select {
        width: 390px;
        height: 50px;
        margin-top: 5px;
        padding: 15px;
        border-radius: 6px;
        border-width: 0px;
    
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        color: #000000;
        background-color: #f2f2f2;
    }
}