
/* IMPORTAR FUENTE */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');



/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

/* BODY */

body{
background:#f4f6f8;
color:#333;
display:flex;
flex-direction:column;
min-height:100vh;
}

/* TITULOS */

h1{
font-size:24px;
margin-bottom:20px;
}

h2{
font-size:18px;
margin-bottom:15px;
}

/* LOGIN */

#login{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
height:100vh;
gap:15px;
}

#login form{
display:flex;
flex-direction:column;
gap:10px;
width:260px;
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* INPUTS */

input, select, textarea{
padding:10px;
border-radius:8px;
border:1px solid #ddd;
font-size:14px;
width:100%;
}

textarea{
resize:vertical;
}

/* BOTONES */

button{
padding:10px;
border:none;
border-radius:8px;
background:#1976d2;
color:white;
cursor:pointer;
font-weight:500;
transition:0.2s;
}

button:hover{
background:#125aa0;
}

/* SECCIONES */

section{
padding:20px;
}

/* LAYOUT PANEL Y SISTEMA */

#sistemaPago,
#panelAlcore{
display:flex;
min-height:100vh;
}

/* MENU LATERAL */

nav{
width:220px;
background:white;
padding:20px;
box-shadow:2px 0 10px rgba(0,0,0,0.05);
}

nav ul{
list-style:none;
display:flex;
flex-direction:column;
gap:10px;
}

nav li{
padding:10px;
border-radius:8px;
cursor:pointer;
transition:0.2s;
}

nav li:hover{
background:#f0f0f0;
}

/* CONTENIDO PRINCIPAL */

main{
flex:1;
padding:30px;
}

/* FORMULARIO */

#formPago{
display:flex;
flex-direction:column;
gap:12px;
max-width:500px;
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* TARJETAS DE SOLICITUD */

.solicitud{
background:white;
padding:20px;
border-radius:12px;
margin-bottom:15px;
box-shadow:0 4px 10px rgba(0,0,0,0.07);
display:flex;
flex-direction:column;
gap:8px;
}

/* BOTONES DE ACCION */

.solicitud button{
margin-top:5px;
}

/* RESPONSIVE */

@media (max-width:768px){

#sistemaPago,
#panelAlcore{
flex-direction:column;
}

nav{
width:100%;
display:flex;
overflow-x:auto;
}

nav ul{
flex-direction:row;
gap:15px;
}

main{
padding:15px;
}

#formPago{
width:100%;
}

}
