/* LOGIN RYTEROP - RESPONSIVE FIX */

html,
body{
  width:100%;
  min-height:100%;
  margin:0;
  padding:0;
  overflow-x:hidden;
}

body.login-body{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:
    radial-gradient(circle at left, rgba(21,154,58,.14), transparent 32%),
    linear-gradient(135deg,#f8fbff,#eef5fb);
  box-sizing:border-box;
}

.login-card{
  width:100%;
  max-width:430px;
  background:#fff;
  border-radius:22px;
  padding:34px 28px 28px;
  box-shadow:0 18px 45px rgba(0,0,0,.14);
  border-top:5px solid #159a3a;
  box-sizing:border-box;
}

.login-logo{
  display:block;
  width:230px;
  max-width:80%;
  height:auto;
  margin:0 auto 22px;
}

.login-card h2{
  text-align:center;
  margin:0 0 24px;
  color:#003f68;
  font-size:26px;
  font-weight:800;
}

.login-field{
  margin-bottom:16px;
}

.login-field label{
  display:block;
  margin-bottom:7px;
  color:#07111f;
  font-size:14px;
  font-weight:700;
}

.login-card input{
  width:100% !important;
  height:46px !important;
  min-height:46px !important;
  max-height:46px !important;
  padding:0 14px !important;
  border:1px solid #cfd8e3 !important;
  border-radius:11px !important;
  background:#fff !important;
  color:#07111f !important;
  font-size:15px !important;
  line-height:46px !important;
  box-sizing:border-box !important;
  outline:none;
}

.login-card input:focus{
  border-color:#159a3a !important;
  box-shadow:0 0 0 3px rgba(21,154,58,.14);
}

.login-button{
  width:100%;
  height:46px;
  margin-top:6px;
  border:0;
  border-radius:11px;
  background:#159a3a;
  color:#fff;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(21,154,58,.22);
}

.login-button:hover{
  background:#0f7f30;
}

#msg{
  margin-top:12px;
  text-align:center;
  font-size:14px;
}

.login-footer{
  margin-top:18px;
  text-align:center;
  font-size:13px;
  color:#64748b;
}

.login-footer a{
  color:#003f68;
  font-weight:700;
  text-decoration:none;
}

.login-footer a:hover{
  text-decoration:underline;
}

@media(max-width:600px){
  body.login-body{
    padding:18px;
    align-items:center;
  }

  .login-card{
    max-width:360px;
    padding:28px 20px 24px;
    border-radius:20px;
  }

  .login-logo{
    width:210px;
    margin-bottom:20px;
  }

  .login-card h2{
    font-size:23px;
    margin-bottom:22px;
  }

  .login-card input,
  .login-button{
    height:44px !important;
    min-height:44px !important;
    max-height:44px !important;
    font-size:15px !important;
  }
}