* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e5e5e5;
    margin: 0;
    padding: 0;
}

/* Contenedor principal centrado */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header de fecha */
.fecha-header {
    background-color: #001E22;
    color: white;
    padding: 8px 20px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fecha-actual {
    font-weight: normal;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Header principal */
.main-header {
    background-color: #003746;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-banamex {
    height: 40px;
}

.separator {
    width: 2px;
    height: 40px;
    background-color: white;
}

.bancanet-text {
    color: white;
    font-size: 18px;
    font-weight: normal;
}

/* Contenido principal */
.main-content {
    min-height: 500px;
    background: url('../images/imagen_de_fondo.png') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
}

/* Sidebar izquierdo */
.login-sidebar {
    background-color: #FFF;
    width: 210px;
    margin: 10px 0 0 30px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    float: left;
}

.login-content {
    background-color: #FFF;
    width: 180px;
    padding: 14px 15px 0 15px;
    font-size: 12px;
    min-height: 250px;
}

.login-form h2 {
    color: #001E22;
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #001E22;
    margin-bottom: 5px;
    font-weight: normal;
}

.form-group input {
    width: 165px;
    height: 24px;
    padding: 4px 8px;
    border: 1px solid #001E22;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.form-group input:focus {
    outline: none;
    border-color: #001E22;
}

.login-btn {
    background-color: #003746;
    color: white;
    padding: 0;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
    width: 108px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.login-btn:hover {
    background-color: #005162;
}

.candado {
    background: url('../images/candado.svg') no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 0 0 5px;
    top: 3px;
    position: relative;
}

.flecha {
    display: inline-block;
    background: url('../images/sprite.svg') -302px -193px no-repeat;
    width: 6px;
    height: 8px;
    margin-right: 4px;
    position: relative;
    top: 1px;
}

.links-section {
    margin-top: 20px;
}

.links-section a {
    display: block;
    color: #001E22;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    line-height: 16px;
}

.links-section a:hover {
    text-decoration: underline;
    color: #00589d;
}

/* Footer del login */
.login-footer {
    margin-top: 15px;
    width: 210px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}

.login-footer img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* Footer */
.footer {
    background-color: #fff6f3;
    padding: 15px 20px;
    border-top: none;
    font-size: 11px;
    color: #003746;
    line-height: 1.4;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #003746;
    padding-bottom: 10px;
}

.footer-left {
    color: #003746;
    font-size: 11px;
}

.footer-right a {
    color: #007C94;
    text-decoration: none;
    font-size: 11px;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 11px;
    color: #003746;
    line-height: 1.4;
    text-align: left;
    border-bottom: 1px solid #a7a7a7;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.footer-code {
    font-size: 11px;
    color: #003746;
    text-align: right;
}