/* 5 Formulario gral*/
.grande{
  width: 650px; 
}
.mediano{
    width: 450px;
}
.pequeno{
    width:300px;
}
@media (max-width: 768px) {
  .grande, .mediano, .pequeno{
    width: 95%;
  }
}




.cabecera, .cabecera button, .elem label{
  color:white;
}
.formStyle, .cabecera, .containerBtns, .elem, .separador, .campoImg, .campoImg label{
    display:flex; 
}
.separador{
  gap:10px;
}
.mitad{
 width: 50%;
}
.formStyle, .elem{
  flex-direction:column;
}
.formStyle{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:1;
    border-radius:15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    overflow:hidden;
    background:var(--golden);
}

.formContent, .containerBtns{
  padding:10px;
}
.formContent{
    max-height: 60vh;
    overflow:auto;
}
.cabecera{
    align-items:center;
    justify-content: space-between;
     background:var(--golden);
    margin:5px auto;
}
.cabecera button{
    padding:7px;
    border:none;
    background:red;
    transition: background-color 0.3s ease;
}
.cabecera button i{
    font-size:1.5rem;
}
.cabecera button:hover{
    background: orange;
}


.elem{
    margin:10px 0;
}
.elem, .containerBtns{
 justify-content:center;
}

.elem label{
    margin:0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.elem input, .elem textarea{
    font-size:1rem;
    border-radius:7px;
    padding:5px;
}
.elem input:focus, .elem textarea:focus{
    outline: none;
    border:2px solid gold;
    box-shadow: 0 0 5px maroon;
}
.containerBtns{
    gap:10px;
}

.campoImg, .campoImg label{
  align-items:center;
}
.campoImg label{
  background: #cdcdcd;
  padding: 10px;
  flex-direction: column;
  border-radius: 7px;
  width: 150px;
  margin:auto;
  cursor:pointer;
  border:1px solid #999;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;;
}
.campoImg i{
    font-size: 2rem;
}
.campoImg label:hover{
    background: #f0f0f0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.9);
    color:maroon;
}



@media (max-width: 768px) {
.separador{
  gap:0;
  flex-direction:column;
}
.mitad{
 width:100%;
}
}