
html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

body {
    padding: 0;
    margin: 0;
    font-family: Varela Round, sans-serif;
}

a {
    color: #4e73df;
    text-decoration: none;
    background-color: transparent;
}

.main-container {
     min-height: 100vh; 
     /*display: flex;*/ 
     flex-direction: column; 
     justify-content: space-between; 
     align-items: center; 
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-text {
    color: #29abe2;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 1.5rem 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    z-index: 1;
}

@media (max-width: 1000px) {
    .logo-icon {
        height: 48px;
        width: 48px;
    }
}

.topbar-container {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 0 16px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 10;
    transition: all .3s;
    width: 100%;
    height: 68px;
}

.topbar-inner {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.login-main-container {
    background-image: linear-gradient(to top right, #29abe2, #07f);
    width: 100%;
    height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-child-container {
    background-image: linear-gradient(to top right, #29abe2, #07f);
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-inner-container {
    width: 80%;
    height: 100%;
    display: flex;
}

@media (max-height: 700px) {
    .login-inner-container {
        margin: 64px 0;
    }
}

.login-feature, .login-login {
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-container {
    align-items: flex-start;
    justify-content: center;
    max-width: 600px;
}

.login-header {
    display: flex;
    justify-content: center;
}

.login-body {
    font-size: 16px;
}

.login-title {
    font-size: 20px;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: none;
    transition: opacity .2s;
    color: #29abe2;
    font-weight: 700;
}

.olvido-title {
    font-size: 18px;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: none;
    transition: opacity .2s;
    color: #29abe2;
    font-weight: 700;
}

.olvido-text {
    margin: 0;
    padding: 12px;
    border-bottom: none;
    transition: opacity .2s;
    color: #6e7072;
    /*font-weight: 700;*/
}

.login-container {
    padding: 24px 24px 0px 24px;
    background-color: #fff;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0,0,0,.25);
    max-width: 400px;
}

@media (max-width: 700px) {

    .login-container {
        margin-top: -50px;
        font-size: 14px;
    }
}

.login-input-container {
    background-color: #f6fbfe;
    border-radius: 32px;
    /*display: flex;*/
    padding: 14px 16px;
    margin-top: 16px;
    border: 1px solid #d7e8f3;
    position: relative;
}

    .login-input-container:focus-within {
        background-color: #ecf1f5;
    }


.login-input-invalid {
    border: 1px solid #e23f33;
}

.login-user-errorMessage {
    position: absolute;
    font-size: 10px;
    color: #e23f33;
    bottom: 1px;
    left: 40px;
    margin: 0;
    padding: 0;
}

.login-input {
    margin-left: 8px;
    outline: none;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 16px;
}


@media (max-width: 1000px) {
    .login-input {
        margin-left: 4px;
        max-width: 180px;
        outline: none;
        background: none;
        border: none;
        font-family: inherit;
        font-size: 14px;
    }
}

.login-button {
    width: 100%;
    margin-top: 24px;
}

.button-text-login {
    color: #fff;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

@media (max-width: 700px) {
    .login-feature {
        display: none;
    }

    .login-body {
        font-size: 14px;
    }

    .button-text-login {
        color: #fff;
        font-size: 14px;
        padding: 0;
        margin: 0;
    }
}

.button_container {
    border-radius: 80px;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: linear-gradient(270deg, #29abe2, #07f);
}

.button-base {
    outline: none;
    font-family: inherit;
    cursor: pointer;
    transition: opacity .2s;
    min-width: 120px;
    z-index: 2;
    position: relative;
}

    .button-base:hover {
        opacity: .8
    }

.button-base-noborder {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,.25);
}

.layout-base {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
}

.forgot-container {
    visibility: visible;
    overflow: hidden;
    transition: max-height .2s;
}

.forgot-c {
    align-items: center;
    justify-content: center;
    /*margin: 16px 0px 0px;*/
}

.text-color-main {
    color: #29abe2;
}

.link-c {
    text-decoration: none;
    cursor: pointer;
}

    .link-c:hover {
        opacity: .7
    }

.text-normal {
    font-size: 16px;
    padding: 20px;
    margin: 0;
}

.footer-container {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
}

.footer-c {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .875em;
    /*margin-top: 16px;*/
}

.contacto-container {
    visibility: visible;
    padding: 10px 18px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,.25);
    max-width: 220px;
}

.contacto {
    font-size: 16px;
    margin: 0;
    border-bottom: none;
    transition: opacity .2s;
    color: #29abe2;
    font-weight: 400;
}