.text-danger.validation-summary-errors {
    text-align: justify;
}

.validation-summary-errors ul {
    padding-left: 0;
}

.validation-summary-errors ul li {
    list-style: none;
    margin-left: 0;
}

body {
    background-color: #f1f4f8;
    font-family: "Roboto", sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.login-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 20px;
}

.login-container {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    min-height: 600px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Left Side: Banner */
.login-banner {
    flex: 1;
    background: linear-gradient(135deg, #244b7d 0%, #15325c 100%);
    position: relative;
    padding: 60px 50px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.login-banner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.banner-footer {
    position: absolute;
    bottom: 40px;
    left: 50px;
    z-index: 1;
}

.banner-footer small {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* Right Side: Form */
.login-form-section {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.form-wrapper {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #10264a;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.form-control {
    background: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #495057;
}

.form-control:focus {
    box-shadow: none;
    border-color: #1e457e;
}

.btn-login {
    background-color: #0b1f3c;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: #061224;
    color: #ffffff;
}

.logos-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.logos-footer img {
    height: 35px;
    opacity: 0.9;
}

.registro-extra {
    display: none;
}

.registro-extra.active {
    display: block;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    .login-banner {
        padding: 40px 30px;
        min-height: 250px;
    }
    .login-form-section {
        padding: 40px 30px;
    }
    .banner-footer {
        bottom: 20px;
        left: 30px;
    }
}