 

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
 
 

  * {
  margin: 0;
  padding: 0;
}

body{
 	/* background:#0a459d; */
	font-family: 'Montserrat', sans-serif;
	font-size:12px;
	 height: 100vh;
  display:flex;
}
 
 
.bg-white{
	background:#ffffff;
}
 
 .containerr{
  position:relative;
  width:90vw;
  height: 90vh; 
  margin: auto;
}

.element{
  position:absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  margin: auto;
  background: #002965;
  width: 50vw; height: 50vh;
  box-shadow: 10px 10px 0px 0px rgba(255,255,255,0.1);
-webkit-box-shadow: 10px 10px 0px 0px rgba(255,255,255,0.1);
-moz-box-shadow: 10px 10px 0px 0px rgba(255,255,255,0.1);
}

/* * * * * Login Form CSS * * * * */
h2 {
  margin: 0 0 15px 0;
  font-size: 30px;
  font-weight: 700;
}
 

p {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.btn {
  display: inline-block;
  padding: 7px 20px;
  font-size: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 5px;
  color: #ffffff;
  outline: none;
  border: 1px solid #ffffff;
  transition: .3s;
  -webkit-transition: .3s;
}
.login-text {
  position: relative;
  width: 100%;
  color: #ffffff;
  text-align: center;
}

.login-form {
  position: relative;
  width: 80%;
  margin:20px auto 0px auto;
  color: #666666;
  
}

.login-form p:last-child {
  margin: 0;
}

.login-form p a {
  color: #4CAF50;
  font-size: 14px;
  text-decoration: none;
}

.login-form p:last-child a:last-child {
  float: right;
}

.login-form label {
  display: block;
  width: 100%;
  margin-bottom: 2px;
  letter-spacing: .5px;
}

.login-form p:last-child label {
  width: 60%;
  float: left;
}

.login-form label span {
  color: #ff574e;
  padding-left: 2px;
}

.login-form input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  font-size: 16px;
  letter-spacing: 1px;
  outline: none;
  border: 1px solid #dddddd;
  border-radius: 0px;
}

.login-form input:focus {
  border-color: #ff574e;
}

.login-form input.btn {
  color: #ffffff;
  background: #4CAF50;
  border-color: #4CAF50;
  outline: none;
  cursor: pointer;
}

.login-form input.btn:hover {
  color: #ffffff;
  background: #56c55a;
}
 

 .header{
   display: flex;
   flex-direction: row;
   position: absolute;
   top:0px;
   /* background: #efefef !important; */
   width: 100%;
   color: #3150bc;
 }
 .header a{
   color: #3150bc !important;
 }


 @media only screen and (max-width: 768px) { 
      .element{
  position:absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  margin: auto;
  background: #002965;
  width: 90vw; height: 50vh;
  box-shadow: 10px 10px 0px 0px rgba(57,130,239,0.5);
-webkit-box-shadow: 10px 10px 0px 0px rgba(57,130,239,0.5);
-moz-box-shadow: 10px 10px 0px 0px rgba(57,130,239,0.5);
}   
      }
      .form-control{border-radius: 0px;}





.form-control:not(select) {
    padding: 1.5rem 0.5rem;
}

select.form-control {
    height: 52px;
    padding-left: 0.5rem;
}

.form-control::placeholder {
    color: #ccc;
    font-weight: bold;
    font-size: 0.9rem;
}
.form-control:focus {
    box-shadow: none;
}


.vertical-center {
  min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */

  display: flex;
  align-items: center;
}






      