.login-copyright {
    position: fixed;
    bottom: 3px;
    left: 0;
    right: 0;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    pointer-events: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f6f7f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

html,
body {
    overflow-y: auto;
    scrollbar-width: none;
}

body::before {
  content: "";
  position: fixed;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  border: 2px solid #C0CAFA;
  border-radius: 50%;
  z-index: -1;
}

body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 400px;
  background-color: rgba(142, 151, 255, 0.08);
  border-top-right-radius: 250px;
  z-index: 0;
  pointer-events: none;
}

.login-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.logo {
  width: 40px;
  height: 40px;
}

.logo-title h1 {
  font-size: 28px;
  font-weight: 600;
  color: #1f1f1f;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-form label {
  font-size: 14px;
  font-weight: 500;
  color: #2a2a2a;
}

.login-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.login-form button {
  margin-top: 10px;
  padding: 12px;
  background-color: #0e063a;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form button:hover {
  background-color: #140384;
}

.input-icon-container {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-container input {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.input-icon-img {
  position: absolute;
  right: 12px;
  width: 18px;
  height: 18px;
  opacity: 1;
  cursor: pointer;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input:not([type="checkbox"]):not([type="radio"]):focus {
  outline: 2px solid black;
}

.links {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  line-height: 2;
}

.links a {
  color: #2a4ba0;
  text-decoration: none;
  margin: 5px 0;
  display: inline-block;
}

.links a:hover {
  text-decoration: underline;
}

.links p {
  margin-top: 10px;
}

.links p a {
  font-weight: 500;
  color: #2a4ba0;
}

.corporate-site {
  margin-top: 30px;
  font-size: 14px;
  text-align: center;
  color: #444;
}

.corporate-site a, .footer a {
    color: #2a4ba0;
    text-decoration: none;
}

.corporate-site a:hover {
  text-decoration: underline;
}

@media (max-width: 500px) {
  .logo-title h1 {
    font-size: 24px;
  }

  .login-form input,
  .login-form button {
    font-size: 14px;
  }

  .links a {
    display: block;
  }

  .links p {
    font-size: 13px;
  }
}

.error-input {
  border: 2px solid red !important;
  outline: none !important;
}

.error-box {
  background-color: #ffcccc;
  color: red;
  font-size: 14px;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid red;
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: left;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

.rememberMe {
  position: relative;
  top: 2px;
  cursor: pointer;
  padding: 5px !important;
}

.remember-me-container label {
  display: inline-block;
  cursor: pointer;
}

@-moz-document url-prefix() {
  .rememberMe {
    top: 1px;
  }
}

@media (max-width: 800px) {
#email, #password {
    width:85% !important;
    margin: 0 auto !important;
}
#clientforgotloginname{
width: 85% !important;
  margin: 0 auto !important;
}
#forgotForm label{
  margin-left:33px !important;
  margin-bottom:5px !important;
}
.info-wrapper{
  margin-left:33px !important;
}
.input-icon-img {
  right:50px !important;
}
#forgetpasswordsubmit{
  width:21rem !important;
  margin-left:33px !important;  
}
.login-form label{
  margin-left:35px !important;
}
.rememberMe {
  left:33px !important;
}
.login-form button{
  width:21rem !important;
  margin: 0 auto !important;
}
.input-icon-container #email{
  width:100% !important;

}
.form-group #password{
  width:100% !important;
}

}
 
