body, html {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url(../images/login-bg-2.jpg) no-repeat center center fixed !important;
  background-size: cover !important;
  justify-content: center;
  align-items: center;
  display: flex;
}


.login{ width:100%; margin:0 auto; background:none; padding:0px 0 0px 0;}
.login .overlay-box{ width:100%; height:100%; padding:60px; background: rgba(0, 0, 0, 0.47); border-radius:10px; overflow:hidden;}
.container-box {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
}

.left-text {
  color: white;
  max-width: 500px;
}

.left-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.left-text p {
  font-size: 16px;
  color: #ddd;
}

.login-form {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.login-form input.form-control {
  border-radius: 6px;
  height: 45px;
  font-size: 14px;
  margin-bottom: 15px;
}

.login-form .btn-primary {
  background-color: #1e73e8;
  border: none;
  width: 100%;
  height: 45px;
  font-weight: bold;
}

.login-form .form-link {
  font-size: 13px;
  color: #ddd;
}

.login-form .divider {
  text-align: center;
  margin: 15px 0;
  color: #ccc;
  font-size: 13px;
}

.login-form .google-btn {
  background: #fff;
  color: #000;
  border: none;
  width: 100%;
  height: 45px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.google-btn img {
  margin-right: 10px;
}

@media(max-width: 768px) {
  .container-box {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 15px;
  }

  .left-text {
	text-align: center;
	margin-bottom: 30px;
  }
  .login .overlay-box{ padding: 20px; }
}