.kuka-mobile-shell {
    min-height: 100vh;
    padding: 24px 14px;
    background: #f5f2ec;
    color: #171411;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kuka-mobile-card {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #ded8cf;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(23, 20, 17, 0.08);
}

.kuka-mobile-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.kuka-mobile-head p {
    margin: 0 0 4px;
    color: #7a3f24;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.kuka-mobile-head h1,
.kuka-mobile-card h1 {
    margin: 0;
    font-size: 26px;
    line-height: 1.15;
}

.kuka-mobile-head a {
    color: #171411;
    font-weight: 700;
    text-decoration: none;
}

.kuka-mobile-form {
    display: grid;
    gap: 16px;
}

.kuka-mobile-form label {
    display: grid;
    gap: 7px;
    margin: 0;
    font-weight: 700;
}

.kuka-mobile-form label span {
    font-size: 14px;
}

.kuka-mobile-form input,
.kuka-mobile-form select,
.kuka-mobile-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #cfc7ba;
    border-radius: 6px;
    background: #fff;
    color: #171411;
    font: inherit;
    font-weight: 500;
    box-sizing: border-box;
}

.kuka-mobile-form select[multiple] {
    min-height: 178px;
}

.kuka-mobile-form textarea {
    min-height: 74px;
    resize: vertical;
}

.kuka-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.kuka-check {
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 10px;
    padding: 12px;
    background: #f8f7f4;
    border: 1px solid #ded8cf;
    border-radius: 6px;
}

.kuka-check input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}

.kuka-check span {
    font-weight: 600;
    line-height: 1.35;
}

.kuka-mobile-form button,
.kuka-mobile-card #wp-submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 6px;
    background: #171411;
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.kuka-success {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid #9fc59f;
    border-radius: 6px;
    background: #eff9ef;
}

.kuka-success span {
    font-size: 13px;
    font-weight: 700;
    color: #2f6f36;
    text-transform: uppercase;
}

.kuka-success strong {
    font-size: 24px;
    letter-spacing: 0;
}

.kuka-mobile-card .login-username,
.kuka-mobile-card .login-password,
.kuka-mobile-card .login-remember,
.kuka-mobile-card .login-submit {
    display: grid;
    gap: 7px;
}

.kuka-mobile-card .login-username input,
.kuka-mobile-card .login-password input {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #cfc7ba;
    border-radius: 6px;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .kuka-mobile-shell {
        padding: 12px;
    }

    .kuka-mobile-card {
        padding: 18px;
    }

    .kuka-grid {
        grid-template-columns: 1fr;
    }

    .kuka-mobile-head {
        align-items: flex-start;
    }

    .kuka-mobile-head h1,
    .kuka-mobile-card h1 {
        font-size: 23px;
    }
}
