/* Estilos con mayor especificidad para WordPress */
body .atlascash-wrapper {
  max-width: 380px;
  margin: 0 auto;
  font-family: "DM Sans", sans-serif;
  box-sizing: border-box;
}

body .atlascash-content {
  background: #fff !important;
  padding: 40px;
  border-radius: 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

body .atlascash-wrapper * {
  box-sizing: border-box;
}

/* Progress Bar */
body .atlascash-progress-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

body .atlascash-progress-bar .step {
  height: 6px;
  flex: 1;
  background-color: #a8b6ae;
  border-radius: 10px;
}

body .atlascash-progress-bar .step.active {
  background-color: #012d26;
}

/* Title */
body .atlascash-title {
  color: #052e34;
  font-size: 32px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  margin: 0 !important;
  margin-bottom: 20px !important;
}

body .atlascash-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #012d26;
  padding: 12px 0;
  font-size: 16px;
  outline: none;
  color: #012d26;
  border-radius: 0;
}

body .atlascash-wrapper input::placeholder {
  color: #7a8c85;
}

body .atlascash-wrapper .field {
  margin-bottom: 20px;
}

/* Intl Tel Input Overrides */
body .atlascash-wrapper .iti {
  width: 100%;
  display: block;
}
body .atlascash-wrapper .iti__flag-container {
  padding: 0;
}
/* body .atlascash-wrapper .iti input {
  padding-left: 50px !important; 
} REMOVED: Let library handle padding with separateDialCode */

body .atlascash-wrapper button {
  margin-top: 10px;
  width: 100%;
  background: #cdef45;
  color: #012d26;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 1px solid #012d26; /* The image button has a thin dark border actually? Hard to tell, looks like just dark text. But some lime buttons have borders. I'll add a border if needed, but image looks borderless or same color border. Wait, looking closely at the image, the button has a black border. */
  border: 2px solid #012d26;
}

body .atlascash-wrapper button:hover {
  background: #bfe034;
}

body .atlascash-wrapper button:disabled {
  background: #e0e0e0;
  border-color: #ccc;
  color: #999;
  cursor: not-allowed;
}

/* Error message style */
body .atlascash-error-message {
  color: #d32f2f;
  background-color: #fdecea;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
  font-size: 14px;
  display: none;
  text-align: center;
}
