*, *:before, *:after
{
    box-sizing: border-box;
}
body
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6.6em 9em;
    margin: 0;
    background-image: url("images/bg-intro-desktop.png");
    background-color: hsl(0, 100%, 74%);
    font-family: 'Poppins', sans-serif;
}
.heading-container
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    width: 33em;
}
.heading-container h1
{
    font-size: 3em;
    line-height: 1em;
    margin-bottom: .1em;
}
.form-container p
{
    font-size: .7em;
}
.form-container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 31em;
    width: 30em;
    max-height: 36em;
}
#free-trial-info
{
    font-size: 1.2em;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.5em;
    background-color: hsl(248, 32%, 49%);
    border: none;
    border-radius: .7em;
    color: white;
    width: 100%;
    margin-bottom: 1em;
    box-shadow: 0em .4em rgba(71, 71, 71, 0.264);
}
.bold
{
    font-weight: bold;
}
.form
{
    padding: 1.6em 2.5em;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: .7em;
    text-align: left;
    box-shadow: 0em .4em rgba(71, 71, 71, 0.264);
}
.input-el
{
    width: 100%;
    height: 3.8em;
    margin: .65em 0;
    border-radius: .5em;
    border: .1em solid hsla(246, 25%, 77%, 0.5);
    padding: 0 2em;
    font-weight: 600;
}
#claim-trial-btn
{
    border: none;
    height: 3.7em;
    margin-top: .8em;
    width: 100%;
    border-radius: .5em;
    letter-spacing: .05em;
    background-color: hsl(154, 59%, 51%);
    color: white;
    border-bottom: .3em solid hsl(154, 57%, 47%);
}
#terms-agreement
{
    color: hsl(246, 25%, 77%);
    font-weight: 400;
}
.red-text
{
    color: hsl(0, 100%, 74%);
    font-weight: bold;
}
.input-error-text
{
    margin: 0 0 1em 0;
    height: .5em;
    font-style: italic;
    font-weight: 400;
    color: hsl(0, 100%, 74%);
    text-align: right;
    width: 100%;
}
.input-error
{
    border: .13em solid hsl(0, 100%, 74%);
    background-image: url("images/icon-error.svg");
    background-size: 1.6em;
    background-position: 95% 50%;
    background-repeat: no-repeat;
}
@media only screen and (max-device-width:480px)
{
    body
    {
        flex-direction: column;
        padding: 4.5em 2em 8em 2em;
        justify-content: start;
    }
    .heading-container
    {
        text-align: center;
        width: 100%;
        margin: 0 0 3em 0;
    }
    .heading-container h1
    {
        font-size: 1.8em;
        margin: 0 0 .4em 0;
    }
    .form-container
    {
        width: 100%;
        height: 33em;
    }
    #free-trial-info
    {
        text-align: center;
        padding:  1em 2.77em;
        margin-bottom: 1.2em;
    }
    .form
    {
        padding: .9em 1.5em;
    }
    #terms-agreement
    {
        text-align: center;
    }
}