*{
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}
.container{
    width: 80%;
    margin: 0 auto;
}

/***************styles for form section ******************/
#form-section{
    height: 90vh;
    display: flex;
    align-items: center;
    background: url('../img/sign-up.jpg');
}

#sign-up-form{
    width: 60%;
    margin: 0 auto;
    background-color: #22400f;
    padding: 5%;
    border-radius: 5px;
    height:fit-content;
}

  
/***************styles for input field ******************/
.input-field{
    display: flex;
    flex-direction: column;
    width: 100%;
}

/***************styles for input lebel field ******************/
.input-field label{
    color: aliceblue;
    font-weight: bold;
    padding: 10px 5px 0 0;
}
.input-field input{
    height: 35px;
    padding: 5px;
    border-radius: 5px;
    border: none;
}

.input-field input:focus{
    outline: none;
}
.input-field button{
    height: 35px;
    border-radius: 5px;
    margin-top: 15px;
    border: none;
    color: #22400f;
    font-weight: bold;
}
.input-field button:hover{
    cursor: pointer;
}

/***************styles for paragraph ******************/
#sign-up-form>form>p{
    color: aliceblue;
    margin-top: 10px;
}
#sign-up-form>form>p>a{
    color: greenyellow;
}



/*************** styles for notepad,laptop and desktop ********************/
@media only screen and (min-width: 768px) {
    #sign-up-form{
        width: 40%;
    }
}