* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.container {
  background: #fff;
  display: flex;
  flex-direction: row;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 700px;
  width: 100%;
}

.left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}

.left .logo {
  align-items: center;
}
  
.logoImg {
  height:15rem;
  width:20rem;
  margin-bottom: 2px;
}


.right {
  flex: 1;
  padding-left: 20px;
}

.right h1 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  color:rgb(30, 55, 138 ,1) ;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  cursor: pointer;
}

.google-btn img {
  height: 20px;
  margin-right: 8px;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
}

.divider span {
  margin: 0 10px;
  color: #777;
}

form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.signup-btn {
  width: 100%;
  padding: 12px;
  background-color: #1e3a8a;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.signup-btn:hover {
  background-color: #162e6c;
}

.login-link {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

.login-link a {
  color: #1e3a8a;
  font-weight: bold;
  text-decoration: none;
}
.google-btn a {
  color: #1e3a8a;
  font-weight: bold;
  text-decoration: none;
}
.google-btn a:hover {
  text-decoration: underline;
}

.login-link a:hover {
  text-decoration: underline;
}

.error {
  color: red;
  font-size: 12px;
  margin-bottom: 10px;
  text-align: left;
}


@media (max-width: 700px) {
  .container {
    flex-direction: column;
    padding: 20px;
  }
  .left, .right {
    padding: 0;
  }
}
.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px; /* space for eye icon */
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #777;
}
