@charset "UTF-8";

:root {
--primary: 							#264d74;
--primary-contrast: 				#204061;
--bg-color:							#f8f8f8;
--btn-color:						#fff;
--text-color: 						#264d74;
--input-color: 						#495057;
--input-border-color: 				#ced4da;
--input-border-color-contrast: 		#ced4da;
}

body {
  background: var(--bg-color);
  font-family: Raleway,-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif;
}

.dialog-box {
  border: none;
  padding: 1rem 2rem;
  color: var(--text-color);
}

.dialog-box .col-sm-10 {
  width: 100%;
}

.iam__dialog .dialog {
	border-color: var(--primary);
}

#logo-row a {
  text-decoration: none;
  transition: all .2s ease-in-out;
}

  #logo-row a:hover {
      opacity: 0.8;
      text-decoration: none;
  }

#logo {
  width: 168px;
}

.btn-primary {
  background-color: var(--primary);
  border: none;
  border-radius: 0;
  width: 100%;
  text-align: center;
  color: var(--btn-color);
}


.btn {
  display: inline-block;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: .5rem;
  padding-top: .5rem;
  color: var(--btn-color);
  text-transform: uppercase;
  font-size: 17px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: bolder;
  border: none;
}

  .btn:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--primary);
      z-index: -2;
  }

  .btn:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background-color: var(--primary-contrast);
      transition: all .3s;
      z-index: -1;
  }

  .btn:hover {
      color: #fff;
      opacity: 1.0 !important;
      cursor: pointer;
  }

      .btn:hover:before {
          width: 100%;
      }

  .btn:focus {
      color: #fff;
      opacity: 1.0 !important;
  }

      .btn:focus:before {
          width: 100%;
      }


label {
  color: var(--text-color);
}

input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--input-color);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--input-border-color);
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-shadow: none;
}

input:hover, input:focus, input:active {
  border-color: var(--input-border-color-contrast);
}

input:focus {
  background-color: #fff;
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-contrast);
}