* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Assistant_bold";
    src: url(Assistant/static/Assistant-Bold.ttf);
}

@font-face {
    font-family: "Assistant_regular";
    src: url(Assistant/static/Assistant-Regular.ttf);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 83px;
}

.container {
    width: 1920px;
    height: 743px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(images/Path\ 15.png);
    background-size: cover;
    background-repeat: no repeat;

}

form {
    width: 1176px;
    height: 151px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

h1 {
    font-family: "Assistant_bold";
    font-size: 86px;
    color: #D3E10E;
    opacity: 1;
    text-align: center;
}

p {
    font-family: "Assistant_regular";
    font-size: 20px;
    color: #F9F9F9;
    opacity: 1;
    text-align: center;
    margin-top: 20px;
}

label {
    font-family: "Assistant_bold";
    font-size: 16px;
    color: #011560;
    opacity: 1;
    text-align: right;
}

input {
    width: 418px;
    height: 50px;
    /* UI Properties */
    background: #F6F6F6;
    opacity: 1;
    border: 0 solid #000;
    border-bottom: 4px solid #D3E10E;
}


input[type="submit"] {
    width: 166px;
    height: 50px;
    /* UI Properties */
    background: #D3E10E 0% 0% no-repeat padding-box;
    font-family: "Assistant_bold";
    font-size: 16px;
    color: #011560;
    opacity: 1;

}

@media screen and (max-width:1200px) {


    .container {
        width: 100vw;
        height: 300px;
        background-position: center center;
        overflow: hidden;
    }

    .header {
        width: 300px;
        height: 150px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }


    h1 {
        font-size: 29px;
    }

    p {
        height: 38px;
        font-size: 15px;
    }

    form {
        width: 100%;
        height: 100%;
        flex-direction: column;
        gap: 20px;

    }

    label {
        width: 80vw;
    }

    input {
        width: 80vw;
        height: 34px;
    }

    input[type="submit"] {
        width: 286px;
        height: 34px;
    }

    input[type="submit"] {
        width: 100%;
    }
}