body{
    margin: 0;
    padding: 0;
    background-image: url('agvar.jpg'); 
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: cover;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.form-area{
    padding-top: 30px;
    width: 450px;
    box-sizing: border-box;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.8);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
}
h3{
    margin: 0;
    padding: 0 0 20px;
    font-weight: bold;
    color: #000000;
}
.form-area label, p{
    margin: 0;
    padding: 0;
    color: #000000;
}

#odigies{
    padding-top: 10px;
    box-sizing: border-box;
    color: #ffffff;
    text-align: center;
}

input[type="text"]{
    text-transform:uppercase; width: 100%;
}
input[type="date"]{
    width:100%
}
select{
    width:100%;
}
input[type="number"]{
    width:100%;
}
input[type="email"]{
    width:100%;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: red; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 14px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }

  @media only screen and ( max-width: 767px ) {
    #myBtn{
        display:none !important;
    }
}