.form{

}
.form h6{
    font-weight: bold;
    font-size: 14px;
}
/* .account-location{
    text-transform: capitalize;
    font-size:12px;
    margin-bottom: 30px;
}
.account-location a{
    color:#2196F3;
} */

.form input{
    border-radius: 0;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 10px;
    height: 44px;
}
.form input[type="text"]{
    /* background-color: #eee;
    border: 1px solid #eee; */
}
.form input[type="submit"]{
    background: #222;
    border: 1px solid #222;
    color:#fff;
}
.form input[type="button"]{
    border: 1px solid #000;
    text-transform: uppercase;
    height:53px;
}
.form button{
  border-radius: 1px;
  font-size: 11px;
  padding: 15px 40px;
  text-transform: uppercase;
  height: 53px;
  letter-spacing: 1px;
  font-family: 'BeVietnamPro', sans-serif;
  display:block;
  width:100%;
}
.form button.btn-light{
  border: 1px solid #000;
  background:#fff;
  color:#222;

  margin: 1rem auto 0 auto;
}
.form button.btn-dark{
  border: 1px solid #000;
  background:#222222;
  color:#fff;
}

.form h6{
    margin: 0 0 50px;
}
.form p.txt{
    font-size: 12px;
    color: #888;
    margin: 0 0 50px 0;
    text-transform: none;
}
.form label {
  font-size: 10px;
  color: #888;
  margin: 0 0 10px;
}
p.txt a{
  float:right;
}
form label{
    font-size:10px;
    color:#888;
    margin: 0 0 10px;
}
form input[type="text"] , form input[type="password"], form input[type="tel"], form input[type="email"]  , input {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #b7b7b7;
    padding:0;
}
form select{
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #b7b7b7;
    padding:0;
}

.form p{
  line-height: 16px;
  margin: 30px 0 0;
  font-size: 12px;
}
.form p small{
    font-size: 10px;
    color: #888;
    text-transform: none;
}
p.hr{
    width:100%;
    background:#eee;
    height: 1px;
    margin: 20px 0;
    text-align:center;
}
p.hr small{
    font-size: 11px;
    display: block;
    line-height: 3px;
}

.form input[type="radio"], input[type="radio"]{
    height:auto;
    margin: 0 5px 0 0;
    vertical-align: middle;
}
.form-header{
  margin: 0 3% 50px;
  width: 94%;
  border-bottom: 1px solid #000;
}




.form {
    /* display: grid;
    grid-template-areas: "firstname lastname" "email email" "password password" "submit submit";
    row-gap: 2.35rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    width: 100%;
    height: auto;
    margin-top: 2rem; */
}
.form-control {
  position: relative;
  width: 100%;
  height: 3rem;
  margin: 0 auto;
  border:0;
}

.form-label {
  position: absolute;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  left: 0;
  top: 0.75rem;
  padding: 0 0.35rem;
  color: var(--color-light-500);
  background: var(--color-white);
  transition: all 0.35s ease;
}
.form-input {
  position: absolute;
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: inherit;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.75rem 1rem;
  z-index: 1;
  outline: none;
  border-radius: 0.25rem;
  border-width: 1.75px;
  border-style: solid;
  border-color: var(--color-light-300);
  color: var(--color-black);
  background-clip: padding-box;
  background-color: transparent;
  transition: all 0.35s ease-in-out;
}
.form-input::-moz-placeholder {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.form-input:-ms-input-placeholder {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.form-input::placeholder {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.form-input:focus {
  border-color: var(--color-black);
}
.form-input:focus + .form-label {
  font-size: 10px;
  font-weight: 400;
  top: -0.65rem;
  left: -5px;
  z-index: 5;
  color: #aeaeae;
}
.form-input:not(:-moz-placeholder-shown).form-input:not(:focus) + .form-label {
  font-size: 10px;
  font-weight: 400;
  top: -0.65rem;
  left: -5px;
  z-index: 5;
  color: #ea4636;
}
.form-input:not(:-ms-input-placeholder).form-input:not(:focus) + .form-label {
  font-size: 10px;
  font-weight: 400;
  top: -0.65rem;
  left: -5px;
  z-index: 5;
  color: #ea4636;
}
.form-input:not(:placeholder-shown).form-input:not(:focus) + .form-label {
  font-size: 10px;
  font-weight: 400;
  top: -0.65rem;
  left: -5px;
  z-index: 5;
  color: #888;
  /* z-index: 9;
  background: #fff;
  display: block;
  width: 100%; */

  /* opacity: 0; */
}
.form-alert {
  position: absolute;
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  left: 0;
  bottom: -1.5rem;
  opacity: 0;
  visibility: hidden;
  color: var(--color-black);
}


.form-control.invalid .form-input {
  border-color: red;
}
.form-control.invalid .form-alert {
  opacity: 1;
  visibility: visible;
  color: red;
  font-size: 10px;
  bottom:auto;
  bottom: 2.5rem;
  left: 0;
  background: #fff;
  z-index: 5;
}



/* From Uiverse.io by adamgiebl */ 

.form input.circle-checkbox {
  appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid #222222;
  border-radius: 30px;
  background-color: transparent;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  padding:0;
  margin-bottom: 0;
}
.form input.circle-checkbox:before {
  content: "";
  background-color: #222;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 6px;
  height: 6px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
.form input.circle-checkbox:checked:before {
  transform: translate(-50%, -50%) scale(1);
}
.form .circle-checkbox-label {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  color:#222;
  margin:0;
}
.form .circle-checkbox-group i{
  display:block;
  color: #989898;
  font-size: 10px;
  margin-left: 20px;
}


.form .circle-group{
  padding: 3% 3%;
  border: 1px solid #222;
  margin-top:20px;
}
.form .circle-group .circle-checkbox-label {
  font-size: 14px;
  font-size: 11px;
  /* text-transform: uppercase; */
  margin-bottom:5px;
}
.form .circle-checkbox-group p{
  display:block;
  color: #989898;
  font-size: 12px;
  margin:0;
  margin-left: 22px;
}
.form .circle-group .circle-checkbox-label {
  /* position: relative; */
}
.form .circle-group .circle-checkbox-label img{
  width: auto;
  height: 13px;
  margin-right: 5px;
}
.price-group{
  text-transform: uppercase;
  color: #989898;
  font-size: 12px;
  text-align: right;
  position: absolute;
  right: 0;
  top: 3px;
}
.form .circle-group button{
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 11px;
  position: absolute;
  right: 0;
  text-align: right;
  width: auto;
  height: auto;
  line-height: 30px;
}
.form .circle-checkbox-group p.paypal-bg{
  color: #6795bc;
  padding: 10px 10px;
  background: #d3e2ef;
  border: 1px solid #8dafd5;
  margin: 20px 0 20px 0;
  border-radius: 3px;
}
.multicard{
  background: url(../images/payment/multicard.png) no-repeat;
  background-size: 140px;
  background-position: right;
}

.label-cvc{
  background: url(../images/payment/icon-cvc.png) no-repeat;
  background-size: 23px;
  background-position: right;
}

.form .circle-group button.btn-paypal-dark, .btn-paypal-dark{
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  width: 100%;
  display: block;
  background-color: #2a2a2a;
  margin: 15px 0 0;
  text-align: center;
  height: 50px;
  position: relative;
}