.kcl-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kcl-form input {
    width: 50%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-height: 30px;
    max-width: 300px;
    font-size: 16px;
}

.kcl-form-group {
    margin: 20px 0px;
}

.kcl-form input[type="submit"],
.kcl-form button {
    width: 54%;
    background-color: #0073aa;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px;
    border-color: #0073aa;
    font-size: 16px;
    max-width: 300px;
}

.kcl-form input[type="submit"]:hover,
.kcl-form button:hover {
    background-color: #005177;
}

.kcl-disabled-button {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: none !important;
    border-color: #ccc !important;
}