.container-login {
    margin-top: 5%;
}

@media (min-width: 768px) {
    .container-login {
        margin-top: 5%;
    }
}

@media (min-width: 1200px) {
    .container-login {
        margin-top: 5%;
    }
}

.lts-login-div {
    margin: 0 auto;
    width: 296px;

}

@media (min-width: 768px) {
    .lts-login-div {
        margin: 0 auto;
        width: 366px;
    }
}

.smart-form .field-icon {
    float: right;
    margin-left: -25px;
    margin-top: -29px;
    padding-right: 25px;
    position: relative;
    z-index: 2;
}

/*
  Input field
 */
.outline{
    position: relative;
}
.outline input[type="text"]{
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #dadce0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.outline input[type="text"]:focus:not([readonly]) + label{
    color: #4285f4;
}
.outline label {
    font-size: .875rem;
    position: absolute;
    top: 1.15rem;
    left: 0;
    padding-left: 30px;
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    transition: .2s ease-out;
    cursor: text;
    color: #757575;
}

.outline input[type="date"] + label::after, .outline input[type="datetime-local"] + label::after, .outline input[type="email"] + label::after, .outline input[type="number"] + label::after, .outline input[type="password"] + label::after, .outline input[type="search-md"] + label::after, .outline input[type="search"] + label::after, .outline input[type="tel"] + label::after, .outline input[type="text"] + label::after, .outline input[type="time"] + label::after, .outline input[type="url"] + label::after, .outline textarea.md-textarea + label::after{
    content: "";
    position: absolute;
    top: 65px;
    display: block;
    opacity: 0;
    -webkit-transition: .2s opacity ease-out,.2s color ease-out;
    -o-transition: .2s opacity ease-out,.2s color ease-out;
    transition: .2s opacity ease-out,.2s color ease-out;
}

.outline input[type="date"] + label::after, .outline input[type="datetime-local"] + label::after, .outline input[type="email"] + label::after, .outline input[type="number"] + label::after, .outline input[type="password"] + label::after, .outline input[type="search-md"] + label::after, .outline input[type="search"] + label::after, .outline input[type="tel"] + label::after, .outline input[type="text"] + label::after, .outline input[type="time"] + label::after, .outline input[type="url"] + label::after, .outline textarea.md-textarea + label::after {
    content: "";
    position: absolute;
    top: 65px;
    display: block;
    opacity: 0;
    -webkit-transition: .2s opacity ease-out,.2s color ease-out;
    -o-transition: .2s opacity ease-out,.2s color ease-out;
    transition: .2s opacity ease-out,.2s color ease-out;
}

.outline label.active {

    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    background: #fff;
    font-weight: 500;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 14px;
    left: 8px;
    z-index: 3;
}

/*
  Button Lock
 */
.container-button {
    position: absolute;
    left: 26.5625%;
    z-index: 0;
    text-align: center;
    margin: 0 auto;
    padding: 2em 0 3em;
}
@media (min-width: 768px) {
    .container-button {
        left: 39.8922%;
    }
}
@media (min-width: 992px) {
    .container-button {
        left: 38.1890%;
    }
}
@media (min-width: 1180px) {
    .container-button {
        left: 40.1316%;
    }
}
@media (min-width: 1600px) {
    .container-button {
        left: 35.2071%;
    }
}
@media (min-width: 1920px) {
    .container-button {
        left: 37.7651%;
    }
}
.login-form-close{
    float: right;
}

.container-button .small {
    font-size: 70%;
    letter-spacing: 2px;
}

/*
  Lock animation
 */

.btn.hi-icon {
    display: inline-block;
    cursor: pointer;
    margin: 15px 30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
}

.hi-icon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.hi-icon:before {
    font-family: 'ecoicon';
    speak: none;
    font-size: 48px;
    line-height: 90px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: block;
    -webkit-font-smoothing: antialiased;
}

.hi-icon-mobile:before {
    content: "\e009";
}

/* Effect 8 */
.container-button .hi-icon {
    background: rgba(0, 154, 223, 0.8);
    -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
    -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
    transition: transform ease-out 0.1s, background 0.2s;
}

.container-button .hi-icon:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    opacity: 0;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.container-button .hi-icon:hover {
    background: rgba(255, 255, 255, 0.05);
    -webkit-transform: scale(0.93);
    -moz-transform: scale(0.93);
    -ms-transform: scale(0.93);
    transform: scale(0.93);
    color: #fff;
}

.container-button .hi-icon:hover:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
    -moz-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
}

@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #009adf, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #009adf, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #009adf, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #009adf, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -moz-transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #009adf, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #009adf, 0 0 0 10px rgba(255, 255, 255, 0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}


#section-btn-association, #section-btn-association:hover {
    color:  #009adf;
}