* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
img{ width: auto;}

body, html { overflow-x:hidden;}

    body {
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background: url("../images/login_bg.jpg") no-repeat center center/cover;
		background-position: 0 60px;
    }



/* Full page layout */
.login-page {
  display: flex;  height: 100vh;  width: 100%;justify-content: right;
	margin: 0 20px 0 0;
}

/* Left image section */
.image-section {
width: 100%;
	position: absolute;
	top:0;
	z-index: 2;
	background: #195eab;
	height:80px;
}
.image-section  img{ padding:20px 20px 0 0;float: right;}

/* Right login section */
.login-section {
  
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

/* Login card styling */
.login-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 40px 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 350px;
  text-align: center;
	border:#c3c3c3 1px solid;
	margin: 0 25px;
}

.login-card h3 {
  margin-bottom: 30px;
  color: #fff;
  font-weight: 600;font-size:1.2rem;
}

/* Form styling */
.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #195eab;
}

.form-group input {
  width: 100%;
  padding: 12px 40px;
  border: 1px solid #ccc;
  border-radius: 25px;
  outline: none;
  font-size: 14px;
}

.form-group input:focus {
  border-color: #005baa;
}

/* Login button */
.login-btn {
  width: 100%;
  background-color: #005baa;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background-color: #004080;
}

/* Responsive */
@media (max-width: 900px) {
 .login-page {    
    margin: 0 0px 0 0;
}
.image-section {
        height: 80px;
        width: 100%;
        text-align: center;
    }
.image-section  img{ padding:20px 20px 0 0;float: none;}
  .login-section {
    flex: none;
    height: 100vh;
	 width: 100%;
  }
}
