/* === ESTILOS GENERALES === */
body {
    background-color: #f5f5f5; /* Fondo gris claro */
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-image: url('../img/1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

/* === ESTILOS DEL CONTENEDOR PRINCIPAL (SOLICITUDES & LOGIN) === */
.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 500px;
}

/* === ESTILOS DEL LOGO === */
.logo {
    width: 180px;
    margin-bottom: 15px;
    border-radius: 20px;
}

/* === ESTILOS DEL FORMULARIO === */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    font-weight: bold;
    margin-top: 10px;
}

input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

button {
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    font-size: 16px;
}

/* === ESTILOS DE NAVEGACIÓN === */
.nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

.nav-link {
    color: black;
    background-color: #d2b4de;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-perfil {
    background-color: #4a235a; /* mismo color al pasar mouse */
    border-color: #4a235a;
    color: white;
}

.btn-perfil:hover {
    background-color: #4a235a; /* mismo color al pasar mouse */
    border-color: #4a235a;
    color: white;
}

.btn-datos {
    background-color: #5499c7; /* mismo color al pasar mouse */
    border-color: #5499c7;
    color: white;
}

.btn-datos:hover {
    background-color: #5499c7; /* mismo color al pasar mouse */
    border-color: #5499c7;
    color: white;
}



