.studio-login-field-group {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
}

.studio-login-label {
    display: block;
    margin-bottom: 8px;
    color: #645045;
    font-size: 13px;
    font-weight: 600;
}

.studio-login-field {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 14px 0 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(111, 84, 63, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.studio-login-field:focus-within {
    border-color: rgba(125, 150, 135, 0.44);
    box-shadow: 0 0 0 4px rgba(125, 150, 135, 0.12);
    transform: translateY(-1px);
}

.studio-login-field-icon {
    flex: 0 0 20px;
    margin-right: 12px;
    color: #8a755f;
    font-size: 15px;
    text-align: center;
}

.studio-login-field input[type="text"],
.studio-login-field input[type="password"] {
    width: 100%;
    height: 56px;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    color: #3a2b22;
    font-size: 15px;
    font-weight: 500;
    line-height: 56px;
}

.studio-login-field input[type="text"]::placeholder,
.studio-login-field input[type="password"]::placeholder {
    color: rgba(102, 83, 69, 0.68);
}

.studio-login-captcha-field {
    padding-right: 8px;
}

.studio-login-captcha-addon {
    display: inline-flex;
    flex: 0 0 150px;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: rgba(240, 231, 220, 0.9);
    box-shadow: inset 0 0 0 1px rgba(143, 96, 63, 0.08);
    overflow: hidden;
    cursor: pointer;
}

.studio-login-captcha-addon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.studio-login-submit.btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin: 8px 0 0;
    padding: 0 20px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #cf9866 0%, #8f603f 100%);
    box-shadow: 0 18px 30px rgba(143, 96, 63, 0.18);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.studio-login-submit.btn:hover,
.studio-login-submit.btn:focus,
.studio-login-submit.btn:active,
.studio-login-submit.btn:active:focus {
    outline: 0;
    opacity: 1;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 22px 34px rgba(143, 96, 63, 0.24);
}

.studio-login-submit.btn.disabled,
.studio-login-submit.btn[disabled] {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 12px 20px rgba(143, 96, 63, 0.14);
}

@media (max-width: 767px) {
    .studio-login-field {
        min-height: 54px;
        border-radius: 16px;
    }

    .studio-login-field input[type="text"],
    .studio-login-field input[type="password"] {
        height: 52px;
        line-height: 52px;
        font-size: 14px;
    }

    .studio-login-captcha-addon {
        flex-basis: 150px;
        width: 150px;
        height: 40px;
        border-radius: 12px;
    }

    .studio-login-submit.btn {
        min-height: 54px;
        border-radius: 16px;
    }
}
