body {
    font-family: 'Inter', serif; 
    height: 100vh !important; 
    margin: 0; 
    background-image: url('../../infografico2.webp'); 
    background-size: cover; background-position: center;
    flex-direction: column;
}

#login-container {
    transition: all 1s ease; 
    margin-left: 0px; 
    margin-right: 0px;
}

.form {
    width: 100%;
    position: relative;
    height: 60px;
    overflow: hidden;
}

.form input {
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    padding: 5px 5px 5px 5px;
    height: 40px;
    color: #000000;
    padding-top: 20px;
    border: none;
    background-color: #ededed;
}

.form label {
    position: absolute;
    bottom: 1px;
    left: 0px;
    width: 100%;
    height: 40px;
    pointer-events: none;
    border-bottom: 1px solid white;
}

.form label::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 0px;
    width: 100%;
    height: 40px;
    border-bottom: 3px solid #004180;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.content-name {
    font-size: 14px;
    position: absolute;
    bottom: 22px;
    left: 5px;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    color: #7e7e7e;
}

.form input:focus {
    outline: none;
}

.form input:focus + .label-name .content-name,
.form input:valid + .label-name .content-name {
    transform: translateY(-55%);
    font-size: 12px;
    left: 5px;
    color: #004180;
}

.form input:focus + .label-name::after,
.form input:valid + .label-name::after {
    transform: translateX(0%);
}

#login-btn {
    width: 100%;
    transition: all 0.2s ease;
    border-color: #7ccf4b;
    border-radius: 5px;
    background: linear-gradient(to left, #7ece49 50%, #7fda44 50%) right;
    background-size: 200% 100%;
}

#dictionary-search-btn {
    width: 100%;
    transition: all 0.2s ease;
    border-color: #7ccf4b;
    border-radius: 5px;
    background: linear-gradient(to left, #7ece49 50%, #7fda44 50%) right;
    background-size: 200% 100%;
}

#go-back-btn {
    width: 100%;
    transition: all 0.2s ease;
    border-color: #003f80;
    border-radius: 5px;
    background: linear-gradient(to left, #003f80 50%, #0050a2 50%) right;
    background-size: 200% 100%;
}

#go-back-btn2 {
    width: 100%;
    transition: all 0.2s ease;
    border-color: #003f80;
    border-radius: 5px;
    background: linear-gradient(to left, #003f80 50%, #0050a2 50%) right;
    background-size: 200% 100%;
}

#dictionary-btn {
    width: 100%;
    transition: all 0.2s ease;
    border-color: #003f80;
    border-radius: 5px;
    background: linear-gradient(to left, #003f80 50%, #0050a2 50%) right;
    background-size: 200% 100%;
}

#login-btn-lbl {
    opacity: 1;
}

#dictionary-search-lbl {
    opacity: 1;
}

#login-btn-loading {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: -8px;
    opacity: 0;
}

#dictionary-search-loading {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: -8px;
    opacity: 0;
}

#login-btn:hover {
    background-position: left !important;
}

#dictionary-search-btn:hover {
    background-position: left !important;
}

#go-back-btn:hover, #go-back-btn2:hover {
    background-position: left !important;
}

#dictionary-btn:hover {
    background-position: left !important;
}

#login-btn.enabled:active {
    transform: scale(0.96);
}

#dictionary-search-btn.enabled:active {
    transform: scale(0.96);
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: #7fda44 !important;
}

.white-background {
    background-color: white !important;
}

@media only screen and (min-width: 992px) {
    .analitycs-loading {
        width: 425px;
        height: 425px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .analitycs-loading {
        width: 325px;
        height: 325px;
    }
}
@media only screen and (max-width: 767px) {
    .analitycs-loading {
        width: 225px;
        height: 225px;
    }
}

@media only screen and (max-width: 575px) {
    #div-canva-login {
        display: none !important;
    }
    #login-container {
        width: 95% !important;
    }
    #login-area {
        width: 100%;
    }
}