/* Navbar */
.navbar{
  background-color: #395b64 !important;
  /* height: 80px; */
  padding: 0px;
}
.dropdown-menu{
  /* margin-top: 20px; */
  background-color: #a5c9ca !important;
  /* display: inline-block; */
  /* width: 300px; */
  text-align: center;
  
}
.dropdown:hover .dropdown-menu{
  display: block;
}
.navbar-brand img{
  height: 50px;
  width: 50px;
}
/* Navbar */
.nav-item a{

  position: relative;
  text-decoration: none !important;
  /* font-family: 'Poppins',sans-serif; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white  !important;
  font-weight: bolder !important;
  font-size: 18px;
  letter-spacing: 0.5px;
  padding: 0 10px;
}
.nav-item a:after{
  content: "";
  position: absolute;
  background-color: #2c3333;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -5px;
  transition: all 0.3s ease;
  
  /* margin: 10px; */
 
}


.nav-item a:hover:after{
  width: 100%;
}


.portal-btn{
  font-weight: bolder;
  color: #2c3333;
  border: 2px solid #395b64;  
  background-color: #e7f6f2
}
.portal-btn:hover{
  border: 2px solid #a5c9ca ;
  background-color: #2c3333 !important;
  color: #e7f6f2;
  
}
/* Login cSS */
@import url("https://fonts.googleapis.com/css?family=Rajdhani:500,700&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  align-items: center;
  background: #395b64;
  display: flex;
  font-family: "Rajdhani", sans-serif;
  height: 100vh;
  justify-content: center;
}

.contact-wrapper {
  background: #fff;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.15);
  border-radius: 0.75em;
  padding: 1em  2em;
  width: 25em;
  margin-top: 100px;

}

.login-cta > h2 {
  color: #3e3f5e;
  font-size: 1.75rem;
  text-align: center;
}

.socials-wrapper > header > h2 {
  background: #fff;
  color: #3e3f5e;
  font-size: 1rem;
  position: relative;
  text-align: center;
  z-index: 10;
}
.socials-wrapper > header > h2:after, .socials-wrapper > header > h2:before {
  background: #d3d3e2;
  content: "";
  display: block;
  height: 0.1em;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  width: 17.5%;
}
.socials-wrapper > header > h2:after {
  right: 0;
}
.socials-wrapper > header > h2:before {
  left: 0;
}
.socials-wrapper > ul {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 0;
  flex-direction: column;
}
.socials-wrapper > ul > li {
  margin: 0.5em;
}
.socials-wrapper > ul > li > a {
  align-items: center;
  border-radius: 0.5em;
  color: #fff;
  display: flex;
  height: 25px;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: all 300ms ease;
  width: 2em;
  width: 100%;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif !important;
}
.socials-wrapper > ul > li > a.facebook {
  
  background-color: #3763d2;
}
.socials-wrapper > ul > li > a.twitter {
  background-color: #db4a39;
}

.socials-wrapper > ul > li > a:hover {
  transform: translatey(-0.25em);
}

form {
  margin: 1em 0;
}
form > .form-row {
  display: flex;
  margin: 0.75em 0;
  position: relative;
}
form > .form-row > span {
  background: #fff;
  color: #adafca;
  display: inline-block;
  font-weight: 400;
  left: 1em;
  padding: 0 0.5em;
  position: absolute;
  pointer-events: none;
  transform: translatey(-50%);
  top: 50%;
  transition: all 300ms ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
form > .form-row > input, form > .form-row > button {
  border-radius: 0.5em;
  font-family: inherit;
  padding: 1em 0.5em;
  width: 100%;
}
form > .form-row > input {
  font-weight: bold;
  transition: 100ms ease all;
  width: 100%;
}
form > .form-row > input[type=text], form > .form-row > input[type=password] {
  border: 0.075em solid #ddd;
}
form > .form-row > input:valid + span {
  top: 0;
  font-size: 0.9rem;
}
form > .form-row > input:invalid + span {
  top: 50%;
}
form > .form-row > input:focus + span {
  top: 0;
}
form > .form-row > input:required {
  box-shadow: none;
}
form > .form-row > input:focus {
  border-color: #395b64;
  outline: none;
}
form > .form-row > input:focus:invalid {
  box-shadow: none;
  top: 50%;
}
form > .form-row > input:focus:valid {
  top: 0;
}
form > .form-row > button {
  background-color: #31787a;
  border: 0.1em solid #6aa3a5;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: all 300ms ease;
  font-size: 1em;
  padding: 5;
}
form > .form-row > button:focus {
  border: 0.1em solid #532cf8;
  outline: none;
}
form > .form-row > button:hover {
  background-color: #395b64;
}/*# sourceMappingURL=login.css.map */


.new-accn-wrapper button{
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #31787a;
}
.new-accn-wrapper a{
  text-decoration: none;
}


@media only screen and (max-width: 768px) {
  .navbar{
    background-color: #395b64 !important;
    
    padding: 0px;
  }
  .contact-wrapper{
    margin-top: 80px;
  }
}