﻿body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

center {
    display: none;
}

div[style*="z-index: 2147483647;"][style*="position: fixed;"][style*="opacity: 0.9;"] {
    display: none !important;
}

div[onmouseover="S_ssac();"] {
    display: none !important;
}

.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 800px;
    max-width: 100%;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

    .card .image-container {
        flex: 1;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .card img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        animation: fadeIn 1s ease-in-out;
    }

    .card .form-container {
        flex: 1;
        padding: 40px;
        background-color: #ffffff;
    }

.form-control {
    border: 1px solid #2196F3; /* Nuevo color */
    border-radius: 8px;
    padding: 12px 14px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

    .form-control:focus {
        border-color: #2196F3; /* Nuevo color */
        box-shadow: 0 0 5px rgba(33, 150, 243, 0.5); /* Nuevo color */
    }

.form-floating .form-control:focus + label {
    color: #2196F3; /* Nuevo color */
}

button.btn-primary {
    background-color: #2196F3; /* Nuevo color */
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    button.btn-primary:hover {
        background-color: #1976D2; /* Color un poco más oscuro */
        transform: scale(1.05);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .card {
        flex-direction: column;
    }

        .card .image-container,
        .card .form-container {
            width: 100%;
            flex: none;
        }

        .card .image-container {
            padding: 10px;
        }
}
center {
    display: none;
}

div[style*="z-index: 2147483647;"][style*="position: fixed;"][style*="opacity: 0.9;"] {
    display: none !important;
}

div[onmouseover="S_ssac();"] {
    display: none !important;
}