


.screenerrors {
  display: none;
}


.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #00db2c;
  outline: 0;
  box-shadow: none;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 1.75rem + 4px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #057d56;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 578px;
    margin-top: 10%;
  }
}

/*This will remove after testing*/
a.testlinks {
    text-decoration: none;
    color: white;
}
/*End Testing code*/

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.login-forms {
    margin-left: 35%;
    margin-right: 35%;
    margin-top: 59px;
    background: linear-gradient(90deg, rgb(96 97 115) 0%, rgb(3 3 65 / 76%) 35%, rgb(11 15 92) 100%);
    border-radius: 16px;
    animation: 2s ease-out 0s 1 slideInFromLeft;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
     border: none; 
    border-radius: 0.25rem;
}
img.card-img-top {
    width: 150px;
    height: 150px;
     padding: 20px; 
    margin-left: 31%;
    border-radius: 72px;
}

form.loginform {
    padding-left: 17px;
    padding-right: 17px;
}
.d-flex.justify-content-center {
    margin-top: 12px;
}
input#loginPassword {
    margin-top: 17px;
}
.form-control:focus {
    color: #1d5b01;
  background-color: #fff;
  border-color: #0e9f17;
  outline: 0;
  box-shadow: none;
}
.btn-primary {
    color: #fff;
  background-color: #02214e;
  border-color: #0d6efd;
  width: 127px;
  height: 53px;
  margin: auto;
  display: block;
}
.btn-primary:hover {
    color: #fff;
    background-color: #861495;
    border-color: #09c944;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #040a56;
    border-color: #02b613;
    box-shadow: none;
}
.btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #01204c;
    border-color: #0abe74;
}
.btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
.login-forms:hover {
    background: linear-gradient(90deg, rgb(0 4 75) 0%, rgb(2 2 71 / 76%) 35%, rgb(72 74 108) 100%);
}




/*Mobile Screen size*/
@media only screen and (max-width: 600px) {

    .login-forms {
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 59px;
}

}
/*end mobile screen 600 px*/

/*Add Mobile screen restriction*/
@media only screen and (min-device-width: 100px) and (max-device-width: px) {
    .login-forms {
      display: none !important;
    }

    .screenerrors {
        display: block;
        color: red;
        padding-left: 10px;
        padding-top: 10px;
        }
        .card-img {
         width: 24%;
        }
    }

/* end Mobile screen restriction   */