.formContainer {
    width: 100%;
    position: relative;
    height: 100vh;
    overflow-y: scroll;
    background-image: url(../img/bg/bgCp.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.frameContainer {
    position: absolute;
    width:30%;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(41, 50, 45, 0.5);
    padding: 20px;
    text-align: center;
}

.form_s1, .form_s2 {
    position: relative;
    opacity: 0.8;
}

.form_s2 {
    margin-top: 100px;
}

.input-row {
    position: relative;
}

.input-row>.form_s1>input, textarea {
    box-sizing: border-box;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #e3d1b6;
    padding:10px;
    margin: 10px 0 10px 0;
    color: #e3d1b6;
    outline: none;
}

.input-row>input::placeholder {
    color: #e3d1b6;
    opacity: 0.5;
}

.input-row>textarea::placeholder {
    color: #e3d1b6;
    opacity: 0.5;
}

#userSubj, #userMessage, #userName, #userEmail {
    width: 100%;
}

#userMessage {
    position: relative;
}

#headerMsg1 {
    position: relative;
    
}

#headerMsg1>span:nth-child(3) {
    margin-left: 110px;
}

#frmContact {
    width: 100%;
}

.btn_style {
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    padding: 8px 20px;
    transition: all 0.5s;
    color: #29322d;
    background-color: #e3d1b6;
}

.btn_style span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
.btn_style span:after {
    content: '\00bb';
    font-size: 1.5em;
    position: absolute;
    opacity: 0;
    right: -15px;
    transition: 0.5s;
    bottom: -3px;
  }
  
.btn_style:hover span {
    padding-right: 15px;
  }
  
.btn_style:hover span:after {
    opacity: 1;
    right: 0;
  }

#btnSend {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.msg_confirm {
    color: #008200;
    display: none;
}

@media only screen and (orientation: portrait) {
    .frameContainer {
        width: 80%;
        background-color: rgba(41, 50, 45, 0.9);
    }

    .form_s1, .form_s2 {
        opacity: 1;
    }

    .formContainer {
        background-image: url(../img/bg/bgCpMob.jpg);
        background-position: right;
    }

}