body {
    margin: 0;
    padding: 20px;
    background: #f4f4f4;
    font-family: Arial, sans-serif;
    color: #222;
}

/* KTM FORM PAGE */

.ktm-page {
    max-width: 700px;
    margin: 40px auto;
}

.ktm-page h1 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #111;
}

.ktm-page .intro {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

/* FORM CARD */

.ktm-form {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* FIELDS */

.ktm-form .field {
    margin-bottom: 18px;
}

.ktm-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.ktm-form input,
.ktm-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    background: #fff;
}

.ktm-form input:focus,
.ktm-form textarea:focus {
    outline: none;
    border-color: #f58220;
}

/* KTM BUTTON */

.ktm-form button {
    width: 100%;
    padding: 16px;
    background: #f58220;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ktm-form button:hover {
    background: #df6f12;
}

/* SUCCESS + ERROR */

.message-page {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.message-page .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.message-page h1 {
    margin-bottom: 10px;
    color: #111;
}

.message-page p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin: 10px 0;
}

.message-page .btn {
    display: inline-block;
    background: #f58220;
    color: #fff;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background 0.2s ease;
}

.message-page .btn:hover {
    background: #df6f12;
}

/* MOBILE */

@media (max-width: 600px) {

    body {
        padding: 12px;
    }

    .ktm-page {
        margin: 20px auto;
    }

    .ktm-form {
        padding: 22px;
    }

    .message-page {
        margin: 20px auto;
        padding: 25px;
    }
}