#utr-form-wrapper {
    max-width: 400px;
    margin: 20px auto;
    padding: 25px;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.utr-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.utr-label {
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
    display: block;
}

.utr-input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.utr-btn {
    background: linear-gradient(to right, #4a90e2, #007aff);
    color: #fff;
    padding: 12px;
    border: none;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.utr-btn:hover {
    background: linear-gradient(to right, #007aff, #4a90e2);
}

.utr-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.utr-message {
    font-size: 14px;
    margin-top: 10px;
}

.utr-loader {
    display: none;
    font-weight: bold;
    margin-top: 10px;
}
