* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}

.auth-container, .register-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.auth-card, .register-card {
  background: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.2s ease;
}

.auth-brand, .register-brand {
  flex: 1.2;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(32, 155, 215, 0.08);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.brand-icon {
  width: 48px;
  height: 48px;
  background-color: #1ea9e2;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 16px -6px rgba(32, 155, 215, 0.25);
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #1a2c3e;
}

.brand-tagline {
  margin-top: 1rem;
}
.brand-tagline h2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1a2c3e;
  margin-bottom: 1rem;
}
.brand-tagline p {
  color: #5f6c7a;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 280px;
}

.feature-list {
  margin-top: 2rem;
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #2c3e4e;
}
.feature-list li i {
  color: #1ea9e2;
  font-size: 1.1rem;
  width: 24px;
}

.auth-form-side, .register-form-side {
  flex: 1;
  padding: 2.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-header {
  margin-bottom: 2rem;
}
.form-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a2c3e;
  margin-bottom: 0.5rem;
}
.form-header p {
  color: #6c7a89;
  font-size: 0.9rem;
}

.input-group {
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
}
.input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #2c3e4e;
}

.input-field {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.8rem;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.2rem;
  background-color: #ffffff;
  transition: all 0.2s;
  outline: none;
  color: #1a2c3e;
  display: block;
}
.input-field:focus {
  border-color: #1ea9e2;
  box-shadow: 0 0 0 4px rgba(32, 155, 215, 0.15);
}
.input-field.is-invalid {
  border-color: #e53e3e;
}
.input-field.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.15);
}

.password-wrapper {
  position: relative;
  display: block;
}
.password-wrapper .input-field {
  padding-right: 3rem;
}

.toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #94a3b8;
  font-size: 1.1rem;
  transition: color 0.2s;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.toggle-password:hover {
  color: #1ea9e2;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.2s;
  z-index: 1;
}
.password-wrapper .input-icon {
  top: 50%;
  transform: translateY(-50%);
}

.input-wrapper {
  position: relative;
  display: block;
  width: 100%;
}
.input-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
.input-wrapper .password-wrapper {
  position: relative;
  display: block;
  width: 100%;
}
.input-wrapper .password-wrapper .input-field {
  padding-right: 3rem;
}

.field-error {
  font-size: 0.7rem;
  color: #e53e3e;
  margin-top: 0.25rem;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 1.2rem;
}
.field-error i {
  font-size: 0.65rem;
}

.auth-btn, .register-btn {
  width: 100%;
  background-color: #1ea9e2;
  border: none;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: white;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(32, 155, 215, 0.2);
}
.auth-btn:hover, .register-btn:hover {
  background-color: #1886bb;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -5px rgba(32, 155, 215, 0.3);
}
.auth-btn:active, .register-btn:active {
  transform: translateY(1px);
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.8rem 0 1.5rem;
  color: #a0afbf;
  font-size: 0.75rem;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e9edf2;
}
.divider span {
  margin: 0 0.8rem;
}

.social-auth, .social-register {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 2rem;
  background: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2c3e4e;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn i {
  font-size: 1rem;
  color: #94a3b8;
}
.social-btn:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

.global-success-alert {
  background-color: #f0fff4;
  border: 1px solid #c6f6d5;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #22543d;
  font-size: 0.85rem;
  animation: slideInDown 0.3s ease-out;
}
.global-success-alert i {
  font-size: 1rem;
  color: #38a169;
}
.global-success-alert span {
  flex: 1;
}
.global-success-alert button {
  background: none;
  border: none;
  color: #22543d;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.global-success-alert button:hover {
  opacity: 1;
}

.global-error-alert {
  background-color: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #c53030;
  font-size: 0.85rem;
  animation: slideInDown 0.3s ease-out;
}
.global-error-alert i {
  font-size: 1rem;
}
.global-error-alert span {
  flex: 1;
}
.global-error-alert button {
  background: none;
  border: none;
  color: #c53030;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.global-error-alert button:hover {
  opacity: 1;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.input-wrapper {
  position: relative;
  display: block;
  width: 100%;
}
.input-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
.input-wrapper .password-wrapper {
  position: relative;
  display: block;
  width: 100%;
}
.input-wrapper .password-wrapper .input-field {
  padding-right: 3rem;
}

.field-error {
  font-size: 0.7rem;
  color: #e53e3e;
  margin-top: 0.25rem;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 1.2rem;
}
.field-error i {
  font-size: 0.65rem;
}

.input-field.is-invalid {
  border-color: #e53e3e;
}
.input-field.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.15);
}

.form-feedback-msg {
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem;
  border-radius: 1rem;
}

@media (max-width: 900px) {
  .auth-card, .register-card {
    border-radius: 1.5rem;
  }
  .auth-brand, .register-brand {
    padding: 2rem;
  }
  .brand-tagline h2 {
    font-size: 1.5rem;
  }
  .form-header h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 680px) {
  body {
    padding: 1rem;
    align-items: flex-start;
  }
  .auth-card, .register-card {
    flex-direction: column;
    border-radius: 1.5rem;
  }
  .auth-brand, .register-brand {
    border-right: none;
    border-bottom: 1px solid rgba(32, 155, 215, 0.1);
    padding: 1.8rem 1.5rem;
    text-align: center;
    align-items: center;
  }
  .brand-logo {
    justify-content: center;
  }
  .brand-tagline p {
    max-width: 100%;
    text-align: center;
  }
  .feature-list {
    display: none;
  }
  .auth-form-side, .register-form-side {
    padding: 1.8rem;
  }
  .form-header h3 {
    font-size: 1.5rem;
  }
  .input-field {
    padding: 0.8rem 1rem 0.8rem 2.5rem;
  }
  .password-wrapper .input-field {
    padding-right: 2.8rem;
  }
  .social-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
@media (min-width: 1200px) {
  .auth-card, .register-card {
    max-width: 1000px;
    margin: 0 auto;
  }
  .auth-brand, .register-brand {
    padding: 3rem;
  }
  .auth-form-side, .register-form-side {
    padding: 3rem;
  }
}
.form-header {
  margin-bottom: 1.8rem;
}

.row-2cols {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.input-group {
  flex: 1;
  margin-bottom: 0;
}
.input-group.full-width {
  margin-bottom: 1.5rem;
  width: 100%;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0 1.8rem;
  font-size: 0.85rem;
  color: #2c3e4e;
}
.terms-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #1ea9e2;
  cursor: pointer;
}
.terms-checkbox a {
  color: #1ea9e2;
  text-decoration: none;
  font-weight: 500;
}
.terms-checkbox a:hover {
  text-decoration: underline;
}

.login-prompt {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #6c7a89;
}
.login-prompt a {
  color: #1ea9e2;
  font-weight: 600;
  text-decoration: none;
}
.login-prompt a:hover {
  text-decoration: underline;
}

@media (max-width: 680px) {
  .row-2cols {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
  }
  .input-group.full-width,
  .input-group {
    margin-bottom: 1.2rem;
  }
  .form-feedback-msg {
    padding: 0.6rem 0.8rem;
  }
}/*# sourceMappingURL=register.css.map */