.body-cuenta{
  height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.c-cuenta {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 5rem 0 4rem 0;
}
.c-cuenta-img {
  text-align: center;
}
.c-cuenta-img img {
  width: 100%;
  max-width: 48rem;
}
.c-cuenta-card {
  border: 1px solid #cbcbcb;
  background-color: var(--color-blanco);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.15);
  padding: 3rem 2rem 3rem 2rem;
  border-radius: 2rem;
  width: 100%;
max-width: 40rem;
margin: 0 auto;
}
.c-cuenta__titulo {
  margin: 0 0 1rem 0;
  font-size: 2.8rem;
  text-align: center;
}
.c-cuenta__descripcion {
  font-size: 1.6rem;
  margin: 0.5rem 0 3rem 0;
  text-align: center;
}
input {
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  height: 4.5rem;
  padding: 0.5rem 1.2rem;
  display: block;
  width: 100%;
}
label {
  font-size: 1.4rem;
  display: block;
  margin: 1.5rem 0 0.5rem 0;
  font-weight: 500;
}
.c-cuenta .boton {
  display: block;
  text-align: center;
  margin-top: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .c-cuenta {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 6rem 0 6rem 0;
  }
}

/* Select de celular */
.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: visible;
  width: auto;
}

.country-select {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px;
  background: #f6f6f6;
  border-right: 1px solid #ccc;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.country-flag {
  font-size: 20px;
}
.country-code {
  font-weight: 700;
  color: var(--color-negro);
  font-size: 12px;
}
.dropdown-icon {
  font-size: 14px;
  color: #666;
}

.phone-number-input {
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  flex: 1;
  background: #fff;
}

/* dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
}
.dropdown.show {
  display: flex;
}

.option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.option:last-child {
  border-bottom: none;
}

.option:hover {
  background: #f8f9fa;
  color: #000;
}

/* FIn de selec de celular */
