:root {
  --primary: #006837;
  --accent: #ffc639;
}

* { box-sizing: border-box; font-family: 'Segoe UI', system-ui, sans-serif; }

body {
  margin: 0;
  min-height: 100vh;
  background: url("Img/mintrace.jpeg") center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.pricing {
  width: 100%;
  max-width: 1200px;
  padding: 40px 24px;
}

.plan {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(0,104,55,.35), rgba(0,0,0,.45));
  border: 1px solid rgba(255,198,57,.35);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 30px rgba(255,198,57,.18);
}

h3 {
  color: var(--accent);
  margin-bottom: 12px;
}

/* ===== FORMULARIO ===== */
.billing-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.billing-form label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #d5e0da;
}


#registroCuentaForm select,
#registroCuentaForm input[type="text"],
#registroCuentaForm input[type="tel"],
#registroCuentaForm input[type="email"],
#registroCuentaForm input[type="number"] {
  display: block;
  width: 100% !important;
  box-sizing: border-box !important;
  height: 48px !important;     
  min-height: 48px !important; 
  max-height: 48px !important; 
  line-height: 46px !important; 
  margin-top: 6px;
  padding: 0 15px !important;   
  border-radius: 12px !important;
  border: 1px solid rgba(255,198,57,.35) !important;
  background-color: rgba(0,0,0,.35) !important;
  color: #fff !important;
  font-size: 14px !important;
  outline: none;
  box-shadow: none !important; 
}




#registroCuentaForm select option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px;
}


.billing-form select option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px;
}

.billing-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffc639" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
    cursor: pointer;
}


.billing-form select option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* ===== CARDS DE DOCUMENTOS ===== */
.docs-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.doc-card {
  position: relative;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(0,104,55,.4), rgba(0,0,0,.55));
  border: 1px dashed rgba(255,198,57,.6);
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(255,198,57,.45);
}

.doc-card input {
  display: none;
}

.doc-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.doc-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}

.doc-text {
  font-size: 12px;
  color: #d5e0da;
}

/* ===== CHECKBOX ===== */
.terms {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  margin-top: 6px;
}

/* ===== BOTON GUARDAR ===== */
.actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.btn {
  flex: 1;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, rgb(235,177,4), rgb(235,177,4));
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.btn.secondary {
  background: rgba(0,0,0,.35);
}

@media (max-width: 768px) {
  .billing-form {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }
}
/* ===== DOCUMENTOS EN CARDS ===== */
.docs-container {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.card {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(0,104,55,.45), rgba(0,0,0,.55));
  border: 1px dashed rgba(255,198,57,.6);
  box-shadow: 0 0 25px rgba(255,198,57,.25);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(255,198,57,.45);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-header .icon {
  font-size: 28px;
}

.status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,198,57,.5);
  color: var(--accent);
}

.status.done {
  background: rgba(0,104,55,.7);
  color: #b8ffd8;
  border-color: #4dffb0;
}

.card h3 {
  font-size: 16px;
  color: var(--accent);
  margin: 6px 0;
}

.card p {
  font-size: 13px;
  color: #d5e0da;
  margin-bottom: 14px;
}

/* Botón dentro de la card */
.card .btn {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, rgba(255,198,57,.25), rgba(0,104,55,.45));
  color: #fff;
  cursor: pointer;
}
.actions.center {
  justify-content: center;
}

.actions.center .btn {
  max-width: 260px;
}

/* Input oculto */
.card input[type="file"] {
  display: none;
}


.plan-subtitle {
  font-size: 14px;
  color: #d5e0da;
  margin-bottom: 18px;
}
body {
    background-image: url(../img/bg-login.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}


.billing-form .full {
  grid-column: 1 / -1; 
  width: 100%;
}


.actions.center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.billing-form label.terms {
  grid-column: 1 / -1;          
  flex-direction: row;         
  align-items: center;
  justify-content: flex-start;  
  gap: 8px;
  margin-top: 6px;
}

.billing-form label.terms input[type="checkbox"]{
  margin: 0;
  flex: 0 0 auto;
}


.btn-primary.is-submitting {
  background-color: #139B6A !important;
  border-color: #139B6A !important;
  color: #ffffff !important;
}

.btn-primary.is-submitting:hover {
  background-color: #0e7a53 !important;
  border-color: #0e7a53 !important;
}
