body {

    color: #2c2c2c !important;
    padding: 0;
    margin: 0;
    background: #F7F7F7;
}



.wrap-login {
    display: flex;
    flex-flow: row nowrap;

}

.login-info {
    display: none;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.skyline-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 60vh;
    z-index: 1;
}

.construction-pattern {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.logo-overlay {
    position: absolute;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Clip the shine sweep */
}

.logo-overlay::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
    z-index: 6;
    animation: shineSweep 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.2s; /* Starts after fadeInScale is mostly done */
}

#imglogin {
    width: 400px;
    opacity: 0;
    animation: fadeInScale 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shineSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.login-box {
    width: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #1f8a59 0%, #0d5835 100%);
    height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.login-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.blob-top-right {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    opacity: 0.6;
}
svg {
  width: 80px;
  height: 100vh;
}
.card {
    background: none;
    border: 0;
    box-shadow: none;
}

.card-body {
    background: none;
    padding: 40px 40px 50px 40px !important;
}

.title-login {
    font-weight: bold;
    color: #FFF;
    text-align: center;
}

.label-login {
    font-weight: 100 !important;
    color: #FFF;
}

.logo-dark-wrapper {
    position: relative;
    display: block;
    width: 80%;
    margin: 0 auto;
    overflow: hidden; /* Clip the shine sweep */
}

.logo-dark-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
    z-index: 6;
    animation: shineSweep 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.2s;
}

#logo_dark {
    display: block;
    width: 100%;
    padding-bottom: 20px;
    opacity: 0;
    animation: fadeInScale 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

#text_inicio {
        display: none;
    }

@media screen and (min-width: 820px) {

    #logo_dark,
    .logo-dark-wrapper {
        display: none;
    }

    #text_inicio {
        display: block;
    }

    .login-info {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .login-box {
        width: 100%;
        display: flex;
        justify-content: center;        
        height: 100vh;
    }


}

@media screen and (min-width: 1520px) {

    #imglogin {
        width: 600px;
    }


}

