* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    background: transparent linear-gradient(180deg, #281EFF 0%, #2DFF8C 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
}

.container {
    width: 1214px;
    height: 506px;
    position: absolute;
    inset: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

@font-face {
    font-family: "Satisfy";
    src: url(fonts/Satisfy/Satisfy-Regular.ttf)
}

@font-face {
    font-family: "Varela_Round";
    src: url(fonts/Varela_Round/VarelaRound-Regular.ttf)
}

h1 {
    text-align: center;
    font-size: 160px;
    font-family: "Satisfy";
    color: #FFFFFF;
    text-shadow: 0px 0px 36px #00000087;
    opacity: 1;

}

h2 {
    text-align: center;
    font-family: "Varela_Round";
    font-size: 32px;
    color: #FFFFFF;
    opacity: 1;
}

p {
    text-align: center;
    font-family: "Varela_Round";
    font-size: 16px;
    color: #F9F9F9;
    opacity: 1;
}

label {
    text-align: center;
    font-family: "Varela_Round";
    font-size: 16px;
    letter-spacing: 0px;
    color: #F9F9F9;
    opacity: 1;


}

input {
    width: 418px;
    height: 50px;
    /* UI Properties */
    background: #F6F6F624 0% 0% no-repeat padding-box;
    border: 2px solid #FFFFFF;
    opacity: 1;
}

.submit {
    width: 206px;
    height: 50px;
    /* UI Properties */
    background: #FFFFFF 0% 0% no-repeat padding-box;
    opacity: 1;
    font-family: "Varela_Round";
    font-size: 16px;
    color: black;


}

form {
    display: flex;
    justify-content: space-evenly;
    align-items: end;
}

label {
    text-align: right;
}

@media screen and (max-width:1200px) {

    .container {
        width: 90%;
        height: 506px;
        display: flex;
        flex-direction: column;
    }

    h1 {
        font-size: 60px;

    }

    h2 {
        font-size: 18px;
        width: 90%;
        inset: 0;
        margin: auto;
    }

    p {
        font-size: 16px;
        width: 90%;
        inset: 0;
        margin: auto;
    }

    form {
        flex-direction: column;
        align-content: space-evenly;
        gap: 16px;
        align-items: center;
    }

    label {
        width: 90%;
    }

    input {
        width: 100%;
    }

    .submit {
        width: 90%;
    }
}