.smart-auth-form {
    margin: 0 auto;
    max-width: 600px;
}

.smart-auth-form #msg {
    margin-bottom: 20px;
    /* background-color: rgba(255, 0, 0, 0.1); */
}

.smart-auth-form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.smart-auth-form #login-input,
.smart-auth-form #password,
.smart-auth-form #code-confirm-input {
    flex: 1 1 auto;
    height: 70px;
    position: relative;
}

.smart-auth-form #password,
.smart-auth-form #code-confirm-input {
    display: none;
}

.smart-auth-form #login-input .smart-label-login,
.smart-auth-form #password .smart-label-password,
.smart-auth-form #code-confirm-input .code-confirm-label {
    position: absolute;
    left: 15px;
    top: 10px;
    color: #ada5a8;
    font-size: 13px;
    transition: all .3s ease;
}

.smart-auth-form #login-input #smart-input,
.smart-auth-form #password #input-password,
.smart-auth-form #code-confirm-input #code-confirm {
    height: 100%;
    width: 100%;
    border-radius: 5px 0 0 5px;
    border: none;
    outline: none;
    padding: 15px;
    background-color: #eef2f7;
    font-size: 16px;
    transition: all .3s ease;
}

.smart-auth-form #password #input-password {
    border-radius: 0;
}

.smart-auth-form #login-input #smart-input.not-empty,
.smart-auth-form #password #input-password.not-empty,
.smart-auth-form #code-confirm-input #code-confirm.not-empty {
    padding: 30px 15px 10px;
}

.smart-auth-form button {
    flex: 1 1 auto;
    max-width: 100px;
    border-radius: 0 5px 5px 0;
    border: none;
    outline: none;
    color: #fff;
    background-color: #3cc;
    font: 14px/14px Intro, Geneva, sans-serif;
}

.smart-auth-form button.disabled-login {
    background: #ccc;
}

.smart-auth-form #additional_info {
    margin: 40px auto 0;
}

/* .skip {
    display: none;
    margin-left: 5px;
} */

.g-captcha{
    width: 100%;
    margin-top: 15px;
}
.g-captcha .g-recaptcha{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: block;
}

@media (max-width: 576px) {
    .smart-auth-form form {
        flex-direction: column;
    }

    .smart-auth-form #login-input,
    .smart-auth-form #password,
    .smart-auth-form #code-confirm-input {
        height: 60px;
    }

    .smart-auth-form #login-input .smart-label-login,
    .smart-auth-form #password .smart-label-password,
    .smart-auth-form #code-confirm-input .code-confirm-label {
        font-size: 12px;
    }

    .smart-auth-form #login-input #smart-input,
    .smart-auth-form #code-confirm-input #code-confirm {
        border-radius: 5px;
    }
    
    .smart-auth-form #login-input #smart-input.not-empty {
        border-radius: 5px 5px 0 0;
    }

    .smart-auth-form #password #input-password.not-empty {
        border-radius: 0 0 5px 5px;
    }

    .smart-auth-form button {
        max-width: 100%;
        margin-top: 15px;
        height: 60px;
        border-radius: 5px;
        font-size: 20px;
    }
    .smart-auth-form #additional_info {
        margin-top: 20px;
    }
}