* {
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
}

.loginSec {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* Allows elements to wrap on smaller screens */
  padding: 20px;
}

.formMainCont {
  flex: 1 1 300px; /* Adjusts the form container size and keeps it responsive */
  max-width: 500px;
  padding: 20px;
  /* background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); */
  margin: 10px;
  border-radius: 10px;
}

.form {
  display: flex;
  flex-direction: column;
}

.formImgCont {
  flex: 1 1 300px; /* Adjusts the image container size and keeps it responsive */
  max-width: 500px;
  margin: 10px;
}
.formImgCont img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.formImgContSmall {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.formImgContSmall img {
  width: 120px;
}
.mText {
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 20px;
  color: var(--blue);
  font-size: 22px;
  width: 120px;
}

@media (min-width: 992px) {
  .formImgContSmall {
    display: none;
  }
}

@media (max-width: 991px) {
  .formImgCont img.ramiroLarge {
    display: none;
  }
}

.custom-container .input-group .fa {
  font-size: 30px;
}
.custom-container .input-group .fa .fa-user {
  font-size: 30px;
}

.add-voter-form {
  display: flex;
  flex-direction: column;
} /*# sourceMappingURL=login.css.map */
.addVoter main {
  display: flex;
  flex-direction: column !important;
}
.header-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 5%;
  min-width: 20%;
}
@media (max-width: 767px) {
  .header-social {
    /* display: none; */
  }
}
.header-social p {
  margin: 10px !important;
  font-size: calc(14px + (16 - 14) * ((100vw - 768px) / (1920 - 768)));
  color: #f7f7f7;
  font-weight: bold;
}
.header-social #top-social {
  display: flex;
}
.header-social #top-social a .fa {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 25px;
  box-sizing: border-box;
  padding-right: 0;
  float: right;
  clear: both;
  color: #fff;
  transition: 0.2s linear;
  border-radius: 50%;
  text-decoration: none;
}
.header-social #top-social a .fa-facebook {
  background-color: #3c63a4;
  margin-right: 5px;
}
.header-social #top-social a .fa-whatsapp {
  background-color: #00d757;
  margin-right: 5px;
}
.header-social #top-social a.fa-youtube {
  background-color: #c4302b;
}
.header-social #top-social a.fa-instagram {
  background: rgb(252, 190, 83);
  background: -moz-linear-gradient(
    45deg,
    rgb(252, 190, 83) 0%,
    rgb(216, 45, 116) 46%,
    rgb(83, 89, 204) 100%
  );
  background: linear-gradient(
    to top right,
    rgb(252, 190, 83) 0%,
    rgb(216, 45, 116) 46%,
    rgb(83, 89, 204) 100%
  );

  background: -webkit-linear-gradient(
    45deg,
    rgb(252, 190, 83) 0%,
    rgb(216, 45, 116) 46%,
    rgb(83, 89, 204) 100%
  );
  background: -o-linear-gradient(
    45deg,
    rgb(252, 190, 83) 0%,
    rgb(216, 45, 116) 46%,
    rgb(83, 89, 204) 100%
  );
  background: -ms-linear-gradient(
    45deg,
    rgb(252, 190, 83) 0%,
    rgb(216, 45, 116) 46%,
    rgb(83, 89, 204) 100%
  );
  background: linear-gradient(
    45deg,
    rgb(252, 190, 83) 0%,
    rgb(216, 45, 116) 46%,
    rgb(83, 89, 204) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fcbe53", endColorstr="#5359cc", GradientType=1 );
  margin-right: 5px;
}
.header-social #top-social a.fa-yelp {
  background-color: #c41200;
}
.header-social #top-social a.fa-google {
  background-color: #ffffff;
  font-size: 0;
  position: relative;
}
.header-social #top-social a.fa-google img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
.header-social #top-social a.fa-twitter {
  background-color: #00acee;
}
.header-social #top-social a.fa-pinterest-p {
  background-color: #bd081c;
}
.header-social #top-social a.fa-linkedin {
  background-color: #0073b0;
}
.header-social #top-social .fa:hover {
  border-radius: 0;
}
.pre-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; /* Optional: add a background color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999999 !important; /* Make sure it covers other content */
}
/* Hide the pre-loader when the page is loaded */
.pre-loader.hidden {
  display: none !important;
}
