:root {
  --elmo-primary: #0052CC;
  --elmo-primary-dark: #003E99;
  --elmo-text: #1D2939;
  --elmo-text-secondary: #667085;
  --elmo-border: #E4E7EC;
  --elmo-background: #F9FAFB;
  --elmo-green: #00B087;
  --elmo-green-dark: #009974;
}

body {
  background-color: var(--elmo-background);
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--elmo-text);
}

.form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.form-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0px 4px 12px rgba(16, 24, 40, 0.08);
}

.logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--elmo-text);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 1rem;
  color: var(--elmo-text-secondary);
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.form-label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--elmo-text);
  margin-bottom: 0;
  width: 120px;
  text-align: left;
}

.form-control {
  border-radius: 8px;
  border: 1px solid var(--elmo-border);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-align: right;
  width: calc(100% - 140px);
  height: 38px;
  margin-left: 20px;
}

.form-control:focus {
  border-color: var(--elmo-green);
  box-shadow: 0 0 0 4px rgba(0, 176, 135, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: var(--elmo-text-secondary);
  text-align: right;
}

.btn-primary {
  background-color: var(--elmo-green);
  border: none;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: white;
  height: 38px;
}

.btn-primary:hover {
  background-color: var(--elmo-green-dark);
  transform: translateY(-1px);
  color: white;
}

.btn-primary:active {
  transform: translateY(0);
  background-color: var(--elmo-green-dark);
  color: white;
}

.button-container {
  padding-left: 140px;
  margin-top: 2rem;
}

/* Add these alert styles */
#alert {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  min-width: 300px;
  max-width: 450px;
}

.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alert-danger {
  color: #842029;
  background-color: #F8D7DA;
  border-color: #F5C2C7;
}

.alert-primary {
  color: #084298;
  background-color: #CFE2FF;
  border-color: #B6D4FE;
}

.alert .close {
  padding: 0;
  background-color: transparent;
  border: 0;
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: inherit;
  opacity: .5;
  cursor: pointer;
}

.alert .close:hover {
  opacity: .75;
}
