* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #8fa8d4 inset !important;
  -webkit-text-fill-color: white !important;
}

body {
  height: 100vh;
  background: #8fa8d4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 1200px;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-section {
  width: 420px;
  color: white;
}

.logo {
  font-size: 18px;
  margin-bottom: 40px;
}

.form-section h1 {
  margin-bottom: 30px;
  font-weight: 500;
}

.input-group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
  padding-bottom: 8px;
}

.input-group i {
  margin-right: 10px;
  font-size: 14px;
}

.input-group input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  color: white;
  font-size: 14px;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.register-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 25px;
  background: #3c6ddf;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.register-btn:hover {
  background: #2e56b8;
}

.login-text {
  margin-top: 20px;
  font-size: 14px;
}

.login-text a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.image-section img {
  width: 500px;
}

.form-field {
  margin-bottom: 20px;
}

.error-message {
  color: red;
  font-size: 0.75rem;
  margin-top: 5px;
  display: none;
}

.google-signup {
  margin-top: 15px;
  text-align: center;
}

.google-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: #fff;
  color: #444;
  border: 1px solid #ddd;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.google-btn i {
  color: #db4437;
  margin-right: 8px;
}

.google-btn:hover {
  background: #f5f5f5;
}

.alert-danger {
  background: #ed6565;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 18px;
}

.password-group {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 15px;
  cursor: pointer;
  color: #777;
}

.toggle-password:hover {
  color: #333;
}
