*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}


body{
    height: 100vh;
    background-image:url("https://images.pexels.com/photos/3183198/pexels-photo-3183198.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
    background-repeat:no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

#full-body-section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

/* LOG-IN-FORM STYLES */

#log-in-section{
      border: none;
      padding: 70px 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius:15px;
      background: rgba(0, 0, 0, 0.6);
}


#log-in-body h4{
    margin-top: 30px;
    color: white;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 3px;
}

#form-icon{
    position: absolute;
    margin-left: 15px;
    margin-top: 11px;
    color: white;
    transition: color 2s;
}

#log-in-input{
    background: transparent;
    border-radius: 20px;
    outline: none;
    padding: 5px 30px;
    padding-left: 40px;
    color: white;
    border: 1px solid #cccccc;
    font-family: 'Quicksand', sans-serif;
    transition: border 2s;
}

#log-in-input::placeholder{
    color: white;
    font-family: 'Quicksand', sans-serif;
}

#log-in-input:hover{
    outline: none;
}

 
 
 
#log-in-btn{
    border-radius: 30px;
    padding: 10px 20px;
    background:transparent;
    color: white;
    font-size: 15px;
    border: none;
    background-color: teal;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

#log-in-content{
    color: white;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

#log-in-forms p a{
    text-decoration: none;
    color: white;
    font-family: 'Raleway', sans-serif;
     
}

#log-in-forms p a:hover{
    text-decoration: none;
        color:white;
        font-family: 'Raleway', sans-serif;
     
}

#log-in-forms p{
text-align: right;
font-family: 'Raleway', sans-serif;
}

#log-in-content a{
    text-decoration: none;
    color: white;
    font-family: 'Raleway', sans-serif;
}

#log-in-content a:hover{
    text-decoration: none;
    color:white;
    font-family: 'Raleway', sans-serif;
}



/* MEDIA QUERY */

@media only screen and (max-width:400.98px){

    #log-in-section{
        border: none;
        padding: 50px 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius:15px;
        background: rgba(0, 0, 0, 0.7);
  }
  
  
}


@media only screen and (max-width:330.98px){

    #log-in-section{
        border: none;
        padding: 30px 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius:15px;
        background: rgba(0, 0, 0, 0.7);
  }

}



@media only screen and (max-width:300.98px){
 
    #log-in-section{
        border: none;
        padding: 30px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius:15px;
        background: rgba(0, 0, 0, 0.7);
        width: 90%;
  }

}