* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  min-height: 100vh;
  background:radial-gradient(circle,rgba(255, 255, 255, 1) 0%, rgba(237, 246, 255, 1) 44%, rgba(204, 231, 255, 1) 100%);
}
img{
    width: auto;
    height: auto;
    max-width: 100%;
}
/* LEFT SIDE */
.left {
  width: 50%;  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.left::before {
	content: '';
	position: absolute;
	left: -150px;
	top: -180px;
	height: 275px;
	width: 274px;
	z-index: 0;
	display: block;
	border: 50px solid rgb(60, 111, 141);
	border-radius: 50%;
	opacity: 0.05;
}
.left::after {
	content: '';
	position: absolute;
	left: -150px;
	bottom: -180px;
	height: 275px;
	width: 274px;
	z-index: 0;
	display: block;
	border: 50px solid rgb(60, 111, 141);
	border-radius: 50%;
	opacity: 0.05;
}
.form-container {
  width: 100%;
  max-width: 420px;
  position: relative;
}
.form-container-large{
  width: 100%;
  max-width: 520px;
  position: relative;
}
.logo {
  font-size: 0px;
  font-weight: bold;
  color: #0d9488;
  margin-bottom: 20px;
}
.logo img{
  max-width: 160px;
  max-height: 90px;
}
label.error{color: red;}
h2 {
  margin-bottom: 5px;
}

.small-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.input-group,.input-item {
  position: relative;
  margin-bottom: 18px;
}

input,select {
  width: 100%;
  padding: 14px 45px 14px 15px;
  border-radius: 10px;
  border: 1px solid #D4DBFC;
  outline: none;
  transition: 0.3s;
  
  line-height: 1.2;
}

input:focus {
  border-color: #035296;
  box-shadow: 0 0 5px rgba(13, 148, 136, 0.3);
}
select{
    background-color: #fff;
}
.custom-input{
    padding: 14px 14px 14px 14px;
    border-radius: 10px; 
}
.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 14px;
}

.forgot {
  text-align: right;
  font-size: 13px;
  margin-bottom: 20px;
}

.forgot a {
  color: #2563eb;
  text-decoration: underline;
}
.forgot a:hover{
    text-decoration: none;
}
button {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #035296;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #034680;
  transform: translateY(-2px);
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #777;
  font-size: 14px;
  margin: 25px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.divider::before {
  margin-right: 10px;
}

.divider::after {
  margin-left: 10px;
}
.social-btns{display: flex;gap: 15px;}
.social-btn {
	background: #fff;
	border: 1px solid #ccc;
	margin-bottom: 15px;
	color: #333;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.social-btn:hover {
  background: #f3f4f6;
}

.signup {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.signup span {
  color: #035296;
  cursor: pointer;
}

/* RIGHT SIDE */
.right {
  width: 50%;
  background-size: cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 33px;
  flex-direction: column;
}
.sms-login-container{
    background: url(../images/smart-review-login-bg.webp) no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: end;
}
.right-content {
  /* max-width: 480px; */
  text-align: center;
  padding: 40px 40px 0 40px; /* no bottom padding */
 
}
.left h1{
   line-height: 1.4; 
   font-size: 30px;
   font-weight: 600;
}
.right h2 {
  line-height: 1.4;
  margin-bottom: 20px;
  font-size: 30px;
   font-weight: 600;
}

.image-box {
  margin-top: 20px;
  font-size: 0;
}

.image-box img {
  width: 100%;
  max-width: 100%;
  transition: 0.3s;
  height: auto;
}
.footer {
  margin-top: 30px;
  font-size: 12px;
  opacity: 0.8;
}
.text-center{
    text-align: center;
}
.toggle-password-text {
	position: absolute;
	right: 14px;
	top: 14px;
	cursor: pointer;
	color: #666;
}
.visible-eye{display: none;}
.fa-eye .visible-eye{display: block;}
.fa-eye .invisible-eye{display: none;}
.alert-danger {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 15px;
}
.alert-danger .close{
    display: none;
}
a{text-decoration: none;}
.iti__flag-container{height: 48px;}
#valid-msg {
	font-size: 14px;
	color: green;
}
#error-msg{
	font-size: 14px;
	color: red;
}
.hide{display: none;}
/* RESPONSIVE */
@media (max-width: 900px) {
  body {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
  }

  .right {
    padding: 30px 20px;
  }
}
@media (max-width: 768px) {
  .left{padding: 30px;}
  .iti{width: 100%;}
}
.password-rules {
  padding-bottom: 20px;
  color: #2d2d2d;
}

.password-rules h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.password-rules ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.password-rules li {
	margin-bottom: 0;
	font-size: 12px;
	background: #fff;
	padding: 5px 7px;
	border: 1px solid #1c68a9;
	border-radius: 8px;
	line-height: 1;
}