body, html {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    min-height: 0;
    font-size: 14px;
    color:rgba(0,0,0,.87);
    margin:0;
    height: 100%;
  }
  body {
    margin: 0;
  }
  .login-content {
    background-image: none;
    background-color: #000000;
    background-size:cover;
    background-position:center;
    min-height: 100%;
    min-width: 320px;
    display:flex;
    justify-content:center;
    flex-direction:column;
  }
  .login-content .box {
    width: 448px;
    border-radius: 8px;
    background-color: #000000;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.24), 0 0 2px 0 rgba(0, 0, 0, 0.12);
    margin: auto;
  }
  .login-content .box .box-container {
    width:100%;
    padding-left: 32px;
  }
  
  .fade-in {
    animation: fadeIn 2s;
  }
  
  @keyframes fadeIn {
  from {
      opacity: 0;
      visibility: hidden;
      }
  to {
      opacity: 1;
      }
  }
  
  
  .footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    font-size: 10px;
    font-family: roboto mono, sans-serif;
  }
  
  .login-content .box .logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .login-content .box .application-name {
    width: 270px;
    font-family: roboto mono, sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 0.83;
    letter-spacing: -0.4px;
    text-align: left;
    color: #0055B8;
    margin-left: 32px;
    margin-top: 40px;
  }
  .login-content .box .form {
    margin-left: 63px;
    margin-top: 5 5px;
    margin-bottom: -5px;
  }
  .login-content .box .login-field {
    width: 14.8em;
    height: 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: normal;
    padding: 10px 10px;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: -0.4px;
    text-align: left;
    color: #000000;
    border-width: 0px;
    outline: none;
    margin-bottom: -15px;
    background-color: #fff;
    font-family: roboto mono, sans-serif;
  }
  .login-content .box input[type="text"]:focus, .login-content .box input[type="password"]:focus {
    border-bottom: 0px solid #0055B8;
  }
  .login-content .box input[type="text"]:-webkit-autofill, .login-content .box input[type="password"]:-webkit-autofill
  {
    box-shadow: 0 0 0px 1000px white inset;
  }
  .login-content .box .submit{
    width: 16.2em;
    font-family: roboto mono, sans-serif;
    font-size: 16px;
    border-radius: 4px;
    border-width: 1px;
    border-color: #FFFFFF;
    padding: 5px 50px;
    background-color: #000000;
    text-align: center;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 60px;
  }
  
  .login-content .box .submit:hover{
    background-color: #FFFFFF;
    color: #000000;
    transition: all .2s ease-in-out;
  }
  .login-content .box .visibility {
    position: relative;
    left: 296px;
    top: 20px;
    width: 24px;
    height: 24px;
    opacity: 0.54;
    border: none;
  }
  .login-content .box .copyright {
    min-width: 320px;
    text-align: center;
    font-size: 14px;
    opacity: .54;
    position: relative;
    top: 50px;
  }
  .message-text {
    width: 322px;
    height: 22px;
    opacity: 0.87;
    font-family: roboto mono, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.3;
    letter-spacing: -0.4px;
    text-align: left;
    color: #b8082a;
    border: 0px;
    position: relative;
    top: 180px;
    left: 64px;
    display: inline-flex;
    align-items: center;
  }
  .identity-providers {
    width: 270px;
    font-family: roboto mono, sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 0.83;
    letter-spacing: -0.4px;
    text-align: left;
    color: #0055B8;
    margin-left: 32px;
    margin-top: 20px;
  }
  
  .login-content .box .social-link-style {
    width: 320px;
    height: 36px;
    border-radius: 2px;
    background-color: var(--white);
    font-family: roboto mono, sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #00754a;
    border-style: solid;
    border-color: #00754a;
    margin-top: 0px;
    margin-left: 30px;
    margin-bottom: 10px;
  }
  
  .login-content .box .para {
    font-family: roboto mono, sans-serif;
    font-size: 14px;
    margin-left: 30px;
  }

@media (max-width: 900px) {

.login-content .box .logo {
  margin-left: 65px;
}


.login-content .box .form {
  margin-left: 35px;
}

}


