* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
}

.container {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.left {
  flex: 0 0 50%;
  height: 100vh;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.right {
  flex: 1;
  height: 100vh;
  overflow-y: auto;
  background: white;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.form-container {
  width: 100%;
  max-width: 400px;
  text-align: left;
}

.form-container h3 {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.icon-compass {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  object-fit: contain;
}

.form-container p {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 32px;
  line-height: 1.4;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #3d3d3d;
  font-weight: 600;
}

.required {
  color: #e63946;
  margin-left: 4px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  margin-bottom: 24px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: #667eea;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px;
}

.eye-icon {
  position: absolute;
  top: 60%;
  right: 12px;
  transform: translateY(-50%);
  height: 20%;
  width: auto;
  cursor: pointer;
  user-select: none;
  opacity: 0.6;
}

.btn-primary {
  width: 100%;
  background-color: #4254ff;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  height: 44px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #2c3ac9;
}

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-google:hover {
  background-color: #f0f0f0;
}

.icon-google {
  height: 20px;
  width: 20px;
  margin-right: 12px;
  object-fit: contain;
}

.login-text {
  font-size: 14px;
  color: #888;
  margin-top: 24px;
  text-align: center;
}

.login-text a {
  color: #4254ff;
  text-decoration: none;
}

.login-text a:hover {
  text-decoration: underline;
}

.required {
  color: #e74c3c;
}
