@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #2a2b2b; /* Gris claro de fondo */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    display: flex;
    width: 900px;
    height: 550px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* PANEL IZQUIERDO - AZUL MARINO */
.side-visual {
    flex: 1.2;
     background: linear-gradient(135deg, #000000   0%, #261616  50%, #7a0e0e  100%);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.logo-white {
    width: 300px !important; /* El !important obliga a que se aplique este tamaño */
    height: auto !important;
    display: block;
    margin-bottom: 25px;
    
}

.side-visual h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 600;
}

.side-visual p {
    opacity: 0.7;
    font-size: 1.1rem;
    line-height: 1.6;
}

.platform-icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 5rem;
    opacity: 0.1;
}

/* PANEL DERECHO - GRIS Y BLANCO */
.login-box {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-box h2 {
    margin: 0;
    color: #1a3a5d;
    font-size: 1.8rem;
}

.subtitle {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.input-container {
    margin-bottom: 20px;
}

.input-container label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.input-container input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #dee2e6;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.input-container input:focus {
    border-color: #1a3a5d;
}

.form-options {
    text-align: right;
    margin-bottom: 30px;
}

.forgot-link {
    color: #1a3a5d;
    text-decoration: none;
    font-size: 0.85rem;
}

button {
    width: 100%;
    padding: 15px;
    background: #404244;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #2c527a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 93, 0.3);
}

/* Responsivo para tablets/móviles */
@media (max-width: 800px) {
    .side-visual { display: none; }
    .login-container { width: 400px; height: auto; }
}
.platform-icon {
    position: absolute;
    bottom: 20px; /* Ajusta la posición */
    right: 20px;
    opacity: 0.15; /* Esto le da el efecto de marca de agua tenue */
    pointer-events: none; /* Para que no interfiera con clics */
}

.img-offshore {
    width: 100px; /* Ajusta el tamaño según tu preferencia */
    height: auto;
    filter: brightness(0) invert(1); /* Si quieres que la imagen se vea blanca como el logo */
}