﻿html, body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #f0f2f5;
}

.login-box {
    display: flex;
    width: 900px;
    height: 600px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.login-form-panel {
    width: 50%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

    .form-header h2 {
        font-weight: 700;
        color: #333;
    }

    .form-header p {
        color: #777;
    }

.btn-login {
    background-color: #0d6efd;
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
}

    .btn-login:hover {
        background-color: #0b5ed7;
        color: white;
    }

.form-links {
    font-size: 0.9rem;
}

    .form-links a {
        color: #0d6efd;
        text-decoration: none;
        font-weight: 500;
    }

        .form-links a:hover {
            text-decoration: underline;
        }

.login-image-panel {
    width: 50%;
    background-image: url('../images/login-bg.png'); /* <- ¡Recuerda poner tu imagen aquí! */
    background-size: cover;
    background-position: center;
}

@@media (max-width: 992px) {
    .login-box {
        flex-direction: column;
        width: 90%;
        max-width: 500px;
        height: auto;
    }

    .login-form-panel, .login-image-panel {
        width: 100%;
    }

    .login-image-panel {
        height: 250px;
        order: -1;
    }
}
