* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  min-height: 100vh;
}
img{
    width: auto;
    height: auto;
    max-width: 100%;
}
/* LEFT SIDE */
.left {
  width: 50%;
  background:radial-gradient(circle,rgba(255, 255, 255, 1) 0%, rgba(245, 255, 254, 1) 44%, rgba(195, 233, 229, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.left:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 45%;
    z-index: 0;
    display: block;
    background: url(../images/shape-light.svg) left top no-repeat;
}
.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: 30px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
  
  line-height: 1.2;
}

input:focus {
  border-color: #0d9488;
  box-shadow: 0 0 5px rgba(13, 148, 136, 0.3);
}
select{
    background-color: #fff;
}
.custom-input{
    padding: 14px 14px 14px 14px;
    border-radius: 30px; 
}
.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: 30px;
  border: none;
  background: #0d9488;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #0f766e;
  transform: translateY(-2px);
}

.divider {
  text-align: center;
  margin: 20px 0;
  color: #888;
}
.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: #f59e0b;
  cursor: pointer;
}

/* RIGHT SIDE */
.right {
  width: 50%;
  background:url(../images/shape-dark.svg) left top no-repeat #009688;
  background-size: cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  flex-direction: column;
}

.right-content {
  max-width: 480px;
  text-align: center;
  background: rgba(0, 91, 82, 0.36);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  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: 25px;
   font-weight: 600;
}

.image-box {
  margin-top: 20px;
}

.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;}
@media (min-width: 901px) {
  div.alert{
    position: fixed;
    font-size: 14px;
    top: 10px;
    right: 10px;
  }
}
/* RESPONSIVE */
@media (max-width: 900px) {
  body {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
  }

  .right {
    padding: 30px 20px;
  }
}