body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

/* General layout */
.auth-container {
  width: 33%;
  background: #fff;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;                     
  justify-content: center;           
  align-items: center;              
  position: relative;
  max-width: 1280px;
  /* Background Image */
  background-image: url('../images/login page new.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.auth-container.register{
  background-image: url('../images/register page.png') !important;
}
/* Red card */
.auth-box {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
}

.header-text {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Brand text */
.brand {
  color:rgb(234 179 8);
  font-weight: bold;
  margin: 20px 0;
  font-size: 1.5rem;
    line-height: 2rem;
    margin-top: 0;
    margin-bottom: 5px;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 3px;
}

.form-group input {
  padding: 10px;
  border: 1px solid;
  border-radius: 5px;
  background: #ffffff73;
  font-size: 14px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: #fff;
  color: #000;
  height: 3rem;
}
.form-group input::placeholder {
  color: #000; /* 🔹 Change this to your desired color */
  opacity: 1;  /* 🔹 Ensures consistent color visibility across browsers */
}
.password-field {
  position: relative;
}

.eye-icon {
  position: absolute;
  right: 10px;
  top: 35%;
  cursor: pointer;
}

/* Button styling */
.login-btn {
  background-color: #0945c8;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background-color: rgb(83, 125, 217);
}

.arrow-btn {
  font-size: 20px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: center;
}

/* Links */
.bottom-links,
.login-link {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
}

.bottom-links a,
.login-link a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.bottom-links,
.login-link2 {
  margin-top: 10px;
  font-size: 13px;
}

.bottom-links a,
.login-link2 a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

/* Logo */
.logo img {
 width: 5rem;
 height: 5rem;

}

/* Top bar */
.top-bar {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-btn {
  background: white;
  color: #333;
  border: none;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  cursor: pointer;
}

.lang-select {
  display: flex;
  align-items: center;
  background: white;
  color: #333;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 13px;
}

.flag {
  width: 16px;
  margin-right: 5px;
}

/* Language Dropdown */
.lang-select {
  display: flex;
  align-items: center;
  background: white;
  color: #333;
  border-radius: 20px;
  padding: 0;
  font-size: 13px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 20px;
  background: white;
  border: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  font-size: 13px !important;
}

.flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
}

.dropdown-menu {
  min-width: 150px;
  font-size: 13px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px !important;
}
.register-form {
  border: 1px solid #fff;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3); /* semi-transparent */
  backdrop-filter: blur(5px); /* blur the background behind the form */
  -webkit-backdrop-filter: blur(5px); /* for Safari */
  padding: 0px 10px;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.register-form .form-group label {
    font-size: 16px;
    font-weight:600;
    color: #000;
}

.register-form .form-group input {
    padding: 5px;
    border: none;
    border-radius: 5px;
    background: unset;
    font-size: 14px;
    outline: none;
    outline-offset: unset;
    border-color: unset;
    color: #000;
    height: unset;
    text-align: right;
}
.register-form .form-group{
  border-bottom: 1px solid #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}
.arrow-btn {
  font-size: 18px!important;
  border-radius: 50%!important;
  width: 48px!important;
  height: 48px!important;
  align-self: center;
  background-color: rgb(37 99 235) !important;
  color: #fff!important;
  position: absolute;
  bottom: -25px;
}
.header-box{
  height: 100px;
}
/* Responsive design */
@media (max-width: 990px) {
  .auth-container {
    width: 100%;
  }

  .header-text h2 {
    font-size: 20px;
  }

  .form-group input {
    font-size: 13px;
  }

  .btn {
    font-size: 14px;
  }

  .logo img {
    width: 80px;
    height: auto;
  }
}
