*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url("images/bg-intro-desktop.png");
    background-color: hsl(0, 100%, 74%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    color: white;
}
/* Left Conatiner */
p{
    font-size: 0.75rem;
    font-weight: 200;
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding:0 5rem;
    /* margin: 0 10rem; */
}
.container-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.5;
}
/* Text Part of the form */
.content{
    width: 40%;
}
/* The Form Section */
.form{
    width: 40%;
}
.main-form{
    background-color: white;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
}
/* Trial Section */
.trial{
    background-color: hsl(248, 32%, 49%);
    text-align: center;
    padding: 0.70rem 1rem;
    border-radius: 5px;
}
.trial h5{
font-size: 0.75rem;
font-weight: 300;
}
.trial span{
font-size: 0.60rem;
font-weight: lighter;
}
input{
    display: block;
    width: 90%;
    margin: 1.5rem auto;
    padding: 0.75rem;
    padding-right: 7rem;
    border: thin hsl(246, 25%, 77%) 0.20px;
    font-size: 0.60rem;
    font-weight: 300;
}
/* button */
.btn{
    display: block;
    width: 90%;
    margin: 0 auto;
    background-color: hsl(154, 59%, 51%);
    color: white;
    border: none;
    font-size: 0.60rem;
    padding: 0.75rem;
    border-radius: 2px;
}
/* Terma and Condition */
.termCondition{
    color: hsl(246, 25%, 77%);
    margin-top: 0.75rem;
    text-align: center;
    font-size: 5px;
    font-weight: bold;
}
.termCondition span{
    color: hsl(0, 100%, 74%);
}
/* Mobile Responsive */
@media screen and (max-width:375px){
    .container{
        padding:1.5rem;
    }
    .container-content{
        flex-direction: column;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    .content{
        width: 100%;
        line-height: normal;
    }
    .content h2{
        font-size: 2rem;
    }
    .content p{
        margin-top: 1rem;
        font-size: 1.2rem;
    }
    .form{
        width: 100%;
        margin-top: 1.5rem;
        padding: 0.20rem;
    }
    .trial{
        padding:1.5rem;
    }
    .trial h5{
        font-size: 1.5rem;
    }
    .trial span{
        font-size: 1.1rem;
        font-weight: lighter;
    }
    input, .btn{
        padding: 1.5rem;
        font-size: 1rem;
        margin: 0.75rem auto;
    }
}