body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #eef2f5;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
}

h2 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.logo {
    display: block;
    margin: 0 auto 30px auto;
    max-width: 180px;
    height: auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

input[type="text"],
input[type="file"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* 👇 COLOR DE MARCA APLICADO AL ENFOCAR 👇 */
input[type="text"]:focus,
select:focus {
    border-color: #1b7783;
    box-shadow: 0 0 0 2px rgba(27, 119, 131, 0.25);
    outline: none;
}

/* 👇 COLOR DE MARCA APLICADO AL BOTÓN 👇 */
button {
    background-color: #1b7783;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s ease;
}

/* 👇 COLOR MÁS OSCURO AL PASAR EL MOUSE 👇 */
button:hover {
    background-color: #13555d;
}

/* Estilos para los mensajes de alerta */
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 👇 ESTILOS AÑADIDOS PARA EL PIE DE PÁGINA 👇 */
.footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer p {
    margin: 0 0 10px 0;
    color: #888;
    font-size: 14px;
}

.logo-proveedor {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
}