@import url("https://use.fontawesome.com/releases/v5.13.0/css/all.css");

:root {
  --lightblue: #1C67C1;
  --darkblue: #1F3B7C;
  --lightgrey: #868686;
  --customblack: #0d0d0d;
  --bgcolor: #f6f6f6;
}

*:focus {
  outline: none;
}

html {
  background-color: #fff;
}

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px;
  color: #cccccc;
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  min-width: 1000px;
}

#formContent {
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  border: 1px solid var(--lightgrey);
  background: #fff;
  width: 90%;
  max-width: 600px;
  position: relative;
  text-align: center;
}

#formContentNoShadow {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  width: 90%;
  max-width: 600px;
  position: relative;
  text-align: center;
}

.entity-body{
  padding: 0px 30px 30px 30px;
}

#formFooter {
  background-color: var(--bgcolor);
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

.entity-header{
  background-color: var(--lightgrey);
  width: 100%;
  border-radius: 4px 4px 0px 0px;
}

.form-header{
  top: 30px;
}

.entity-header label{
  color: #fff;
  padding-top: 10px;
}

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid var(--lightblue);
}

input[type=button], [type=password], input[type=submit], input[type=reset], .custom-btn  {
  background-color: var(--lightblue);
  border: none;
  color: white;
  width: 100%;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 0px 20px 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#bottomInput{
	margin-bottom: 20px;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: var(--darkblue);
}

input[type=button]:active, input[type=password]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.97);
  -webkit-transform: scale(0.97);
  -o-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
}

input[type=text], input[type=password] {
  background-color: var(--bgcolor);
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: start;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 10px 0px 0px 0px;
  width: 100%;
  border: 2px solid var(--bgcolor);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

input[type=text]::placeholder, [type=password]::placeholder {
  color: #cccccc;
}

input[type=tel]{
  width: 100%;
  background-color: var(--bgcolor);
}

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}

#icon {
  width:60%;
}

.dropdown .label-type{
  text-align: left;
}

.custom-dropdown{
  background-color: var(--bgcolor);
  border-color: #cccccc;
  text-align: start;
}

.dropdown-toggle::after {
  float: right;
  margin-top: 6px;
}

.form-outline{
  background-color: var(--bgcolor);
  margin: 8px 0px 15px 0px;
  width: 100%;
}

.form-outline .form-control{
  margin: auto;
}

.iti{
  width: 100%;
}

.remember-be-check{
  margin: 5px 0px 5px 2px;
}

label.d-flex{
  font-size: small;
  margin: 0px;
}

.small-text-footer{
  color: var(--darkblue);
  text-decoration: none;
}

.small-text-footer a{
  color: var(--darkblue);
  text-decoration: none;
}

.small-text-footer:hover{
  transform: scale(1.1);
}

.footer-buttons{
  display: flex;
}

.footer-buttons .footer-btn{
  margin: 3px;
}

#navbarDropdownMenuLink{
  text-decoration: none;
}

.dropdown-menu-end li a{
  color: var(--lightblue);
}

/* change the padding from bootstrap item */
.alert-dismissible {
  padding-right: 0rem;
  padding-left: 0rem;
}

#messages{
  top: 10px;
}

#messages span{
  color: var(--customblack);
}

.input-group{
  flex-wrap: inherit;
}

@media (max-width: 991px){
  .wrapper {
    padding: 10px;
    min-width: 400px;
  }
}

@media (max-width: 768px){
  .wrapper {
    padding: 10px;
    min-width: 400px;
  }
}
