body.login-page {
    background: url('/images/fondo.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-wrapper {
    width: 900px;
    max-width: 95%;
    margin: 50px auto;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: #fff;
}

/* Panel izquierdo */
.login-left {
    flex: 1;
    background: url('/images/ilustracion.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    padding: 40px;
}
.login-left .overlay {
    position: absolute;
    top:0; left:0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}
.login-left .content {
    position: relative;
    z-index: 2;
}
.login-left h1 {
    font-size: 3rem;
    font-weight: 700;
}
.login-left p {
    margin: 20px 0;
}
.social-login .btn {
    margin: 5px;
    border-radius: 25px;
}

/* Panel derecho */
.login-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-right h2 {
    margin-bottom: 20px;
    font-weight: 600;
}
.login-right .form-control {
    border: none;
    border-bottom: 2px solid #334;
    border-radius: 0;
    margin-bottom: 20px;
    padding: 10px 5px;
}
.login-right button {
    border-radius: 25px;
}
