.container-register {
  width: 100%;
  max-width: 75dvw;
  min-height: 85dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1rem;
}

.content-form-register-header{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-height: 100px;
  padding-bottom: .5rem;
  img {
    width: auto;
    height: 60px;
}
}

.container-form-register{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.content-form-register-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  span{
    font-size: 1.3rem;
    font-family: RamoDisplay, sans-serif;
    font-weight: 800;
    text-align: center;
    width: 100%;
    color: var(--ramo-amarillo);
  }
  img{
    width: 100%;
    height: 250px;
    object-fit: contain;
  }
}
.form-register {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.form-register-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
  justify-content: flex-start;
  span, label{
    font-size: .8rem;
    font-family: RamoDisplay, sans-serif;
    font-weight: 800;
    text-align: left;
    width: 100%;
    color: var(--ramo-amarillo);
  }
  label { cursor: pointer; }
  select{
    border-radius: 4px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: .5rem 1rem;
    width: 100%;
    max-width: 300px;
    font-family: RamoLight, sans-serif;
    font-weight: 400;
    color: var(--ramo-azulOscuro);
    border: none;
    opacity: .8;
    option{
      font-family: RamoLight, sans-serif;
      font-weight: 400;
      color: var(--ramo-amarillo);
      background: var(--ramo-azulOscuro);
    }
  }
  input{
    border-radius: 4px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: .5rem 1rem;
    width: 100%;
    max-width: 300px;
    font-family: RamoLight, sans-serif;
    font-weight: 400;
    border: none;
    opacity: .8;
}
}


.checkbox-register{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
  gap: .5rem;
  input{
    width: 20px;
    height: 20px;
  }
  span, label{
    font-size: .8rem;
  }
}

.content-form-footer{
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 2rem;
  span{
    font-size: .8rem;
    font-family: RamoLight, sans-serif;
    font-weight: 400;
    color: var(--ramo-amarillo);
    text-decoration: underline;
  }
}


/* Popup confirmación usuario registrado */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.popup-overlay[hidden] {
  display: none !important;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-content {
  background: var(--ramo-azulOscuro, #1a365d);
  border-radius: 4px;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  display: flex;
  text-align: center;
  gap: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  flex-direction: column;
  align-items: center;
}



.popup-icono {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--ramo-amarillo, #fbbf24);
  color: var(--ramo-azulOscuro, #1a365d);
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-titulo {
  font-family: RamoLight, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ramo-amarillo, #fbbf24);
  margin: 0 0 0 1rem;
}

.popup-mensaje {
  font-family: RamoLight, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
}

.popup-btn {
  background: var(--ramo-amarillo, #fbbf24);
  color: var(--ramo-azulOscuro, #1a365d);
  border: none;
  padding: 0.75rem 2rem;
  font-family: RamoLight, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.popup-btn:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.popup-btn:focus {
  outline: 2px solid var(--ramo-amarillo);
  outline-offset: 2px;
}

.cont-form-register{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 1rem;

  background-color: var(--ramo-azulOscuro);
  color: var(--ramo-amarillo);
}

@media (max-width: 800px) {

  .container-form-register {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
}

.container-register{
grid-template-columns: 1fr;
}

.cont-form-register{
  display: grid;
  grid-template-columns: 1fr;
padding: 0px;
}

}