*{
    padding: 0;
    margin: 0;
    box-shadow: border-box;
}

body{
    font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
    width: 100%;
    height: 100vh;
}

p{
    text-align: left;
}
.container{
    position: relative;
    display: flex;
    justify-content: left;
    align-items: left; 
    width: 100%;
    height: 100%;
    padding: 20px 20px;
}

.container:after{
    content: "";
    position:absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("hands-gee8567622_1920.jpg") no-repeat center;
    background-size: cover;
    z-index: -1;
    filter: blur(50px);
}

.contact-box{
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 0px 19px 5px rgba(0, 0,0, 0.19);
}

.left{
    height: 100%;
    background: url("hands-gee8567622_1920.jpg") no-repeat center;
    background-size: cover;
}

.right{
    padding: 25px 40px;
}

h2{
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;   
}

/* Title underline */
h2:after{
    content:'';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #f7e70896;
}

/* Main enter fields */
.field{
    width: 90%;
    padding: 0.5rem 1rem;
    outline: none;
    border: 2px solid rgba(0, 0,0, 0);
    background-color: rgba(230, 230,230, 0.6);
    font-size: 1.1rem;
    margin-bottom: 22px;
    transition: .3s;
}

.field:hover{
    background-color: rgba(0, 0, 0, 0.1);
}

.field:focus{
    background-color:#fff;
    border: 2px solid rgba(30, 85, 250, 0.47);
}

/* extra style for radio button part */
.topic{
    display: left;
    margin-top: 10px;
    margin-bottom: 22px;
}

/* message block */
.area{
    min-height: 150px;
}

/* extra style for check box part */
#agree{
    display: left;
    margin-top: 10px;
    
}

/* extra style for the click button */
.btn{
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    background-color: #f7e70896;
    cursor: pointer;
    outline: none;
    border: none;
    color: rgb(5, 5, 5);
    transition: .3s;
    margin-top: 20px;
}

.btn:hover{
    background-color: #daba06f3;
}

/* responsive style */
@media screen and (max-width:880px){
    .contact-box{
        grid-template-columns: 1fr;
    }

    .left{
        height: 200px;
    }
}


/*Logo*/
#logo {
    float: left; 
    width: 15%;
    height: 15%;
  }

/*Menu responsive*/
.topnav {
    z-index:1;
    background-color: #faf9ea;
    font-weight: bolder;
    position: fixed;
    overflow: clip;
    top: 0;
    border-bottom: double;
  }
  .topnav a {
    float: left;
    display: block;
    color: #080000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
  }
  .topnav a:hover {
    background-color: rgb(233, 224, 224);
    color: black;
  }
  .topnav a.active {
    background-color: #f7e70896;
    color:#082222;
  }
  
  main{
    padding: 20px;
    margin-top: 7%;
  } 
  