*{
  box-sizing: border-box;
}
  
body{
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Now Text';
  font-weight: normal;
  font-style: normal;
  background: #F8F8F8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

:root{
  --white: #FCFCFD;
  /*
  --brand-blue: #375BAC;
  --primary-color: #fff; 
  --secondary-color: #E1E4EA;
  --dark-text:  #0F1420;
  --primary-text:  #0075BC;
  --bg-blue:  #213F82;
  --muted-dark-text: #676868;
  --border-color: #E1E4EA;
  --mode-blue: #375BAC;
  --notification-bg: #D5DCED;
  --progress-bg: #B7B7B9;
  --continue-text: #375BAC;
  --header-notification: rgba(252, 252, 253, 0.4);
  --accent: #FF6600;
  --scroll-bar: #FCFCFD;
  --scroll-bar-bg: #676868;
  --try-again: #B7B7B9;
  --try-again-text: #E1E4EA;
  --notifications-bg: #F6FAFB;
  --notification-border-blue: #21479B;
  --notification-border-grey: #B7B7B9;
  --notification-date: #B7B7B9;
  --green-text: #08821C;
  --bg-body-white: #F8F8F8; */
}


.clr{
  clear: both;
}
  
.alignleft{
  float: left;
}
  
.alignright{
  float: right;
}

.center-text{
  text-align: center;
}

.my-rounded{
  border-radius: 20px;
}

a{
  text-decoration: none;
}
  
/* .a{
  border: 2px solid red;
}
  
.b{
  border: 2px solid green;
}
  
.c{
  border: 2px solid blue;
} */
  

/*LOGIN PAGE*/
.login-house{
  padding-top: 160px;
  min-height: 100vh;
  background-color: #051b34;
}

.mot-button-div{
  display: flex;
  justify-content: center;
  align-items: center;
}

#login-div{
  display: none;
}
  
.login-holder{
  width: 40%;
  padding: 0px;
  /* border: 1px solid #e6e6e6; */
}

.login-holder h1{
  font-style: normal;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.login-holder .form-control{
  height: 50px;
  color: var(--white);
  background-color: inherit;
  border: 1px solid var(--white);
  margin-bottom: 1rem;
}

.login-holder .form-control::placeholder {
  color: var(--white);
  opacity: 1; /* Firefox */
}

.login-holder .form-control::-ms-input-placeholder { /* Edge 12-18 */
  color: var(--white);
}

.login-holder button{
  height: 50px;
  margin-top: 2.5rem;
}

/* .login-holder {

} */




















