/* Global Styles */
*,
*:before,
*:after {
  box-sizing: border-box;
}

::placeholder {
  color: black;
  opacity: 2;
}

body {
  padding: 1em;
/*  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
  font-family: Nexa;
  font-size: 15px;
  color: #b9b9b9;
  background-color: #e3e3e3;
}

h2 {
  color: #ed1c24;
  text-align: center;
}

/* Input Styles */
input,
input[type="radio"] + label,
input[type="checkbox"] + label:before,
select option,
select,
textarea {
  width: 100%;
  padding: 1em;
  line-height: 1.4;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  transition: all 0.35s ease-in-out;
}

input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: #ed1c24;
}

input:focus + .input-icon i,
textarea:focus + .input-icon i {
  color: #ed1c24;
}

input:focus + .input-icon:after,
textarea:focus + .input-icon:after {
  border-right-color: #ed1c24;
}

/* Input Group Styles */
.input-group {
  margin-bottom: 1.5em;
  zoom: 1;
}

.input-group:before,
.input-group:after {
  content: "";
  display: table;
}

.input-group:after {
  clear: both;
}

.input-group-icon {
  position: relative;
}

.input-group-icon input,
.input-group-icon textarea,
.input-group-icon select  {
  padding-left: 4.4em;
}

.input-group-icon .input-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.4em;
  height: 3.4em;
  line-height: 3.4em;
  text-align: center;
  pointer-events: none;
}

.input-group-icon .input-icon:after {
  position: absolute;
  top: 0.6em;
  bottom: 0.6em;
  left: 3.4em;
  display: block;
  border-right: 1px solid #e5e5e5;
  content: "";
  transition: all 0.35s ease-in-out;
}

.input-group-icon .input-icon i {
  transition: all 0.35s ease-in-out;
}

/* Select Styles */
select {
  height: 3.4em;
  line-height: 2;
}

select:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

select:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

select:focus,
select:active {
  outline: 0;
}

select option {
  background-color: #fff;
  color: #000;
}

#captchaimage{
    font-weight: 400;
    height: 40px;
    user-select: none;
    text-decoration:line-through;
    font-style: italic;
    font-size: x-large;
    color: black;
    border: red 2px solid;
    display: flex;
    justify-content: center;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; 
  animation: spin 1s linear infinite;
}

.center-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000; /* make sure it's on top of everything */
}

.loader {
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Container Styles */
.container {
  max-width: 100%;
  padding: 1em 3em 2em 3em;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4.2px;
  box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2);
}

/* Row Styles */
.row {
  zoom: 1;
}

.row:before,
.row:after {
  content: "";
  display: table;
}

.row:after {
  clear: both;
}

/* Column Styles */
.col-half {
  padding-right: 10px;
  float: left;
  width: 50%;
}

.col-half:last-of-type {
  padding-right: 0;
}

.col-third {
  padding-right: 10px;
  float: left;
  width: 33.33333333%;
}

.col-third:last-of-type {
  padding-right: 0;
}

button[type="submit"] {
  width: 300px;
  padding: 1em;
  background-color: #ed1c24;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.35s ease-in-out;
}

button[type="submit"]:hover { background-color: #000000;}
button[type="submit"]:focus { outline: none; background-color: #ed1c24;}
.error { color: red;}
.head-logo {width: 200px; margin-left: 42% !important;}

/* Responsive Styles */
@media only screen and (max-width: 540px) {
  .col-half {
    width: 100%;
    padding-right: 0;
  }
  
}

@media (max-width: 767px) {
.head-logo {margin-left: 0% !important;}
}

