.kes-subscription-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    text-align: center;
}

.kes-form-image {
    max-width: 100px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.kes-form-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.kes-form-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.kes-form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.kes-form-button {
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.kes-form-button:hover {
    background: #218838;
}

.kes-form-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.kes-form-agreement {
    margin-top: 15px;
    font-size: 12px;
    text-align: left;
}

.kes-form-agreement label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.kes-form-agreement input {
    margin-right: 8px;
    margin-top: 2px;
}

.kes-form-agreement a {
    color: #0073aa;
    text-decoration: none;
}

.kes-form-agreement a:hover {
    text-decoration: underline;
}

.kes-form-message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.kes-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.kes-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}