body{
    font-size:16px;
}
.form-main{
    border:0px solid;
    padding:10px;
    /*margin:10% auto;*/
    width:95%;
    /* box-shadow: 1px 2px 4px rgba(0, 0, 0, .5); */
   

}
.form-title{
    /* border-left:3px solid green; */
    padding: 10px 30px;
    margin:-10px;
}
.form-titles{
    /* border-left:3px solid green; */
    padding:30px;
    margin:-10px;
}
.areaa-form{
    border: 0;
    outline: 0;
    border-bottom: 1px solid #c3bebe;
    width:100%;
    padding:10px;
    font-size:30px;
}
input:focus { 
    border-bottom:2px solid red;
    transition: .3s width ease-in-out;
  }

  .areaa-form1{
    border: 0;
    outline: 0;
    border-bottom: 1px solid #c3bebe;
    width:100%;
    padding:5px;
    margin-top:10px;
    border-radius: 5px;
    text-indent: 5px;
}
.form-title1{
    border:0px solid;
    padding: 0px 0px 30px 0px;
    text-align:right;
}
.form-select{
    border:1px solid;
    display:inline-block;
    padding:10px;
    width:40%;
    font-size:20px;
}
.select-option{
    margin-top: 10px;
    color:gray;
}

.areaa-form3{
    border: 0;
    outline: 0;
    border-bottom: 1px solid #c3bebe;
    padding:10px;
    width:100%;
}
.input-group{
    border:0px solid;
    margin-bottom:10px;
     /* display:none;  */
         width: 100%;

}
.input-left{
    border:0px solid;
    display: inline-block;
    width:70%;
}
.input-right{
    border:0px solid;
    display: inline-block;
    width:28%;
    vertical-align: top;
    text-align: right;
}
.areaa-form4{
    border: 0;
    outline: 0;
    border: 1px solid #c3bebe;
    padding:5px;
    margin-top:15px;
       width: 460px !important;
       border-radius: 5px;
       text-indent: 5px;

}
.areaa-form-front{
  border: 0;
  outline: 0;
  border: 0px solid #c3bebe;
  padding:10px;
  margin-top:15px;
     width: 460px !important;

}
.areaa-form5{
    border: 0;
    outline: 0;
    border: 1px solid #c3bebe;
    padding:5px;
    margin-top:15px;
        width: 425px !important;
    margin-left:30px;
    border-radius: 5px;
    text-indent: 5px;
}
.areaa-form6 {
  border: 0;
  outline: 0;
  border: 1px solid #c3bebe;
  padding: 5px;
  margin-top: -12px;
  width: 425px !important;
  margin-left: 30px;
  border-radius: 5px;
  text-indent: 5px;
}
.add-button{
    border:1px solid;
    padding:7px;
    width:100%;
    cursor:pointer;
    background-color: #342637;
    color:#fff;
    font-size:18px;
}
.button-group{
     margin-top:25px;
     text-align: right;
}
.btn-remove{
    border:1px solid;
    padding:7px;
    width:40%;
    cursor:pointer;
    background-color: red;
    color:#fff;
    font-size:18px;
}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container input {
    /* position: absolute; */
    /*opacity: 0;*/
    cursor: pointer;
    /*height: 0;*/
    width: 0;
  }
  
::placeholder{
  font-size:14px;

}



  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 30px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border:1px solid #000;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
/* radio button */
  
.containers {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .containers input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmarks {
    position: absolute;
    top: 30px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border:1px solid #000;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .containers:hover input ~ .checkmarks {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .containers input:checked ~ .checkmarks {
    background-color: #2196F3;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmarks:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .containers input:checked ~ .checkmarks:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .containers .checkmarks:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
  }