/* style.css inspirado en plataforma corporativa */

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #e9ecef; /* gris claro de fondo */
    color: #333;
}

header {
    background-color: #003366; /* azul oscuro corporativo */
    color: #fff;
    padding: 20px 30px;
    text-align: left;
    font-size: 22px;
    font-weight: bold;
}

nav {
    background-color: #00509e; /* azul intermedio */
    padding: 12px 20px;
    display: flex;
    justify-content: flex-start;
}

nav a {
    color: #fff;
    margin-right: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffcc00; /* amarillo dorado para resaltar */
}

.contenido {
    padding: 50px;
    text-align: center;
}

form {
    background: #fff;
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    text-align: left;
}

input[type="text"], input[type="password"], textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    margin-top: 20px;
    padding: 12px 18px;
    background-color: #00509e;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #003366;
}

a {
    color: #00509e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
