:root {
    --loginPortalPrimary: #B0BEC5;
    --loginPortalSecondary: #2A454E;
}

body {
    color: #000;
    overflow-x: hidden;
    height: 100%;
    background-color: var(--loginPortalPrimary);
    background-repeat: no-repeat;
}

.card0 {
    box-shadow: 0px 4px 8px 0px #757575;
    border-radius: 0px;
}

.card2 {
    margin: 0px 40px;
}

.logo {
    /* width: 200px;
    height: 100px; */
    margin-top: 20px;
    margin-left: 35px;
}

.image {
    width: 50%;
}

.border-line {
    border-right: 1px solid #EEEEEE;
}

.facebook {
    background-color: var(--loginPortalSecondary);
    color: #fff;
    font-size: 25px;
    /* padding-top: 5px; */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;

}

.twitter {
    background-color: #2A454E;
    color: #fff;
    font-size: 18px;
    padding-top: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.linkedin {
    background-color: #2A454E;
    color: #fff;
    font-size: 18px;
    padding-top: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.line {
    height: 1px;
    width: 45%;
    background-color: #E0E0E0;
    margin-top: 10px;
}

.or {
    width: 10%;
    font-weight: bold;
}

.text-sm {
    font-size: 14px !important;
}

::placeholder {
    color: #BDBDBD;
    opacity: 1;
    font-weight: 300
}

:-ms-input-placeholder {
    color: #BDBDBD;
    font-weight: 300
}

::-ms-input-placeholder {
    color: #BDBDBD;
    font-weight: 300
}

input,
textarea {
    padding: 10px 12px 10px 12px;
    border: 1px solid lightgrey;
    border-radius: 2px;
    margin-bottom: 5px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 14px;
    letter-spacing: 1px;
}

input:focus,
textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #2A454E;
    outline-width: 0;
}

button:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0;
}

a {
    color: inherit;
    cursor: pointer;
}

.btn-blue {
    background-color: var(--loginPortalSecondary);
    width: 150px;
    color: #fff;
    border-radius: 2px;
}

.btn-blue:hover {
    background-color: #000;
    cursor: pointer;
}

.bg-blue {
    color: #fff;
    background-color: var(--loginPortalSecondary);
}

@media screen and (max-width: 991px) {
    .logo {
        margin-left: 0px;
    }

    .image {
        width: 280px;
        height: 300px;
    }

    .border-line {
        /*border-right: none;*/
        display: none;
    }

    .card2 {
        border-top: 1px solid #EEEEEE !important;
        margin: 0px 15px;
    }

    .card1 {
        padding-bottom: 0rem !important;
    }

    #site-mainlogo {
        margin: auto;
    }
}

.card0 {
    border-radius: 16px;
}

.bg-blue {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.flag-icon {
    width: 25px;
}

a:hover {
    color: #FED444;
    text-decoration: none;
}


/* Form animation init states */

/* CONTENEDOR FORM */
.form-anim {
    position: relative;
    border-radius: 12px;
}

/* SVG BASE */
.svg-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* LINEA */
.line {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

/* ANIMACION (segmento elegante) */
.active .line {
    stroke-dasharray: 80 220;
    animation: dashMove 6s linear infinite;
    opacity: 0.6;
    filter: drop-shadow(0 0 4px var(--color));
}

@keyframes dashMove {
    from { stroke-dashoffset: 300; }
    to { stroke-dashoffset: 0; }
}

/* HOVER / FOCUS */
.form-anim:hover .line {
    stroke-width: 2.5;
    opacity: 1;
}

/* GRADIENTES */
.hospital .line { stroke: url(#gradHospital); }
.doctor .line { stroke: url(#gradDoctor); }

/* PULSE */
.pulse {
    animation: pulse 0.4s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
#login_formcontrol{
    padding: 10px;
    border-radius: 12px;
    border: solid 2px #000;
}
/* Form animation end states */