:root {
  --primary: #163c30;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--primary);
}

.login-wrapper {
  display: flex;
  min-height: 100vh;
}

.login-form {
  flex: 0 0 400px;
  background: #f6f7f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.logo-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.logo-image {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.login-form h2 {
  margin: 0 0 1.5rem;
}

.login-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-form input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.login-form .forgot {
  align-self: flex-end;
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: none;
}

.option-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.login-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  text-align: center;
}

.login-links p {
  margin: 0 0 0.25rem;
  font-weight: 600;
}

.login-links a {
  color: var(--primary);
  text-decoration: underline;
}

.login-form button {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  background: #D9B65D;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.login-form .back {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: none;
}

.login-hero {
  flex: 1;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-end;
}

.login-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 60, 48, 0.5);
}

.login-hero .content {
  position: relative;
  padding: 2rem;
  max-width: 500px;
}

.login-hero h3 {
  margin: 0 0 1rem;
  font-size: 1.75rem;
}

.login-hero p {
  margin: 0;
  line-height: 1.5;
}

.login-hero.individual {
  background: url('images/foto_personal(1).jpg') center/cover no-repeat;
}

.login-hero.business {
  background: url('images/team.jpg') center/cover no-repeat;
}